Github user kchilton2 commented on a diff in the pull request:
https://github.com/apache/incubator-rya/pull/256#discussion_r159512111
--- Diff:
dao/mongodb.rya/src/main/java/org/apache/rya/mongodb/MongoDBRdfConfiguration.java
---
@@ -92,184 +93,162 @@ public MongoDBRdfConfiguration clone() {
return new MongoDBRdfConfiguration(this);
}
- public Authorizations getAuthorizations() {
- final String[] auths = getAuths();
- if (auths == null || auths.length == 0) {
- return MongoDbRdfConstants.ALL_AUTHORIZATIONS;
- }
- return new Authorizations(auths);
- }
-
/**
- * @return {@code true} if each statement added to the batch writer
should
- * be flushed and written right away to the datastore. {@code false}
if the
- * statements should be queued and written to the datastore when the
queue
- * is full or after enough time has passed without a write.<p>
- * Defaults to {@code true} if nothing is specified.
+ * Set whether the Rya client should spin up an embedded MongoDB
instance and connect to that
+ * or if it should connect to a MongoDB Server that is running
somewhere.
+ *
+ * @param useMock - {@true} to use an embedded Mongo DB instance;
{@code false} to connect to a real server.
*/
- public boolean flushEachUpdate(){
- return getBoolean(CONF_FLUSH_EACH_UPDATE, true);
+ public void setUseMock(final boolean useMock) {
+ this.setBoolean(USE_MOCK_MONGO, useMock);
}
/**
- * Sets the {@link #CONF_FLUSH_EACH_UPDATE} property of the
configuration.
- * @param flush {@code true} if each statement added to the batch
writer
- * should be flushed and written right away to the datastore. {@code
false}
- * if the statements should be queued and written to the datastore
when the
- * queue is full or after enough time has passed without a write.
+ * Indicates whether the Rya client should spin up an embedded MongoDB
instance and connect to that
+ * or if it should connect to a MongoDB Server that is running
somewhere.
+ *
+ * @return {@true} to use an embedded Mongo DB instance; {@code false}
to connect to a real server.
--- End diff --
Done.
---