Package v7db.files

Examples of v7db.files.ContentStorageFacade


  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));
  }
View Full Code Here


  public DBCollection getBucketCollection() {
    return db.getCollection("v7files.buckets");
  }

  public ContentStorageFacade getContentStorage() {
    return new ContentStorageFacade(new MongoContentStorage(db),
        new MongoReferenceTracking(db));
  }
View Full Code Here

TOP

Related Classes of v7db.files.ContentStorageFacade

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.