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