96979899100101102103104
* Constructs a new {@code NodeStoreMongo}. * * @param db Mongo DB. */ public MongoNodeStore(DB db) { commandExecutor = new DefaultCommandExecutor(); this.db = db; init(); }
4243444546474849
* Constructs a new {@code BlobStoreMongoGridFS} * * @param db The DB. */ public MongoGridFSBlobStore(DB db) { commandExecutor = new DefaultCommandExecutor(); gridFS = new GridFS(db); }