Example #1
0
 public Neo4jDatabase(final String neo4jFolder, boolean readOnly) throws Exception {
   graphDb =
       readOnly ? Neo4jUtils.getReadOnlyGraphDb(neo4jFolder) : Neo4jUtils.getGraphDb(neo4jFolder);
 }
Example #2
0
 public Neo4jDatabase(final String neo4jFolder) throws Exception {
   graphDb = Neo4jUtils.getGraphDb(neo4jFolder);
 }