List of usage examples for com.mongodb DBCollection getCollection
public DBCollection getCollection(final String name)
From source file:v7db.files.mongodb.Vermongo.java
License:Open Source License
/** * @return the shadow collection wherein the old versions of documents are * stored/*from w w w. j a va 2 s. c om*/ */ static DBCollection getShadowCollection(DBCollection c) { return c.getCollection("vermongo"); }