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