4748495051525354
public static final String COLLECTION_NAME_FILES = "v7files.files"; public V7GridFS(DB db) { files = db.getCollection(COLLECTION_NAME_FILES); storage = new ContentStorageFacade(new MongoContentStorage(db), new MongoReferenceTracking(db)); }
5354555657585960
public DBCollection getBucketCollection() { return db.getCollection("v7files.buckets"); } public ContentStorageFacade getContentStorage() { return new ContentStorageFacade(new MongoContentStorage(db), new MongoReferenceTracking(db)); }