this(db.getCollection(DEFAULT_CONTENT_COLLECTION_NAME));
}
public MongoContentStorage(DBCollection contentCollection) {
this.contentCollection = contentCollection;
storageSchemes.put("gz", new GzippedContent());
storageSchemes.put("cat", new ContentConcatenation());
storageSchemes.put("zip", new ZipFile.ContentFromZipFile());
}