public class SpringRestGraphDatabase extends org.neo4j.rest.graphdb.RestGraphDatabase implements GraphDatabase
| Constructor and Description |
|---|
SpringRestGraphDatabase(org.neo4j.rest.graphdb.RestAPI api) |
SpringRestGraphDatabase(String uri) |
SpringRestGraphDatabase(String uri,
String user,
String password) |
| Modifier and Type | Method and Description |
|---|---|
org.neo4j.graphdb.Transaction |
beginTx() |
<T extends org.neo4j.graphdb.PropertyContainer> |
createIndex(Class<T> type,
String indexName,
IndexType indexType)
creates a index
|
org.neo4j.graphdb.Node |
createNode(Map<String,Object> props)
creates the node and initializes its properties
|
org.neo4j.graphdb.Relationship |
createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Map<String,Object> properties)
creates the relationship between the startNode, endNode with the given type which will be populated with the provided properties
|
<T extends org.neo4j.graphdb.PropertyContainer> |
getIndex(String indexName) |
org.neo4j.graphdb.Node |
getOrCreateNode(String indexName,
String key,
Object value,
Map<String,Object> properties)
creates the node uniquely or returns an existing node with the same index-key-value combination.
|
org.neo4j.graphdb.Relationship |
getOrCreateRelationship(String indexName,
String key,
Object value,
org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
String type,
Map<String,Object> properties)
Creates the relationship uniquely, uses the given index,key,value to achieve that.
|
TransactionManager |
getTransactionManager() |
TransactionManager |
getTxManager() |
<T> QueryEngine<T> |
queryEngineFor(QueryType type)
returns a query engine for the provided type (Cypher or Gremlin) which is initialized with the default result converter
|
<T> QueryEngine<T> |
queryEngineFor(QueryType type,
ResultConverter resultConverter)
returns a query engine for the provided type (Cypher or Gremlin) which is initialized with the provided result converter
|
void |
remove(org.neo4j.graphdb.Node node)
deletes the Node and its index entries
|
void |
remove(org.neo4j.graphdb.Relationship relationship)
deletes the relationship and its index entries
|
void |
setConversionService(ConversionService conversionService) |
void |
setResultConverter(ResultConverter resultConverter) |
boolean |
transactionIsRunning() |
org.neo4j.graphdb.traversal.TraversalDescription |
traversalDescription() |
createNode, getAllNodes, getNodeById, getReferenceNode, getRelationshipById, getRelationshipTypes, getRestAPI, getStoreDir, index, shutdownclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetNodeById, getReferenceNode, getRelationshipByIdpublic SpringRestGraphDatabase(org.neo4j.rest.graphdb.RestAPI api)
public SpringRestGraphDatabase(String uri)
public org.neo4j.graphdb.Node createNode(Map<String,Object> props)
GraphDatabasecreateNode in interface GraphDatabasepublic org.neo4j.graphdb.Transaction beginTx()
beginTx in interface org.neo4j.graphdb.GraphDatabaseServicebeginTx in interface GraphDatabasebeginTx in class org.neo4j.rest.graphdb.RestGraphDatabasepublic TransactionManager getTxManager()
getTxManager in interface org.neo4j.kernel.GraphDatabaseAPIgetTxManager in class org.neo4j.rest.graphdb.RestGraphDatabasepublic org.neo4j.graphdb.Node getOrCreateNode(String indexName, String key, Object value, Map<String,Object> properties)
GraphDatabasegetOrCreateNode in interface GraphDatabasepublic org.neo4j.graphdb.Relationship getOrCreateRelationship(String indexName, String key, Object value, org.neo4j.graphdb.Node startNode, org.neo4j.graphdb.Node endNode, String type, Map<String,Object> properties)
GraphDatabasegetOrCreateRelationship in interface GraphDatabasepublic org.neo4j.graphdb.Relationship createRelationship(org.neo4j.graphdb.Node startNode,
org.neo4j.graphdb.Node endNode,
org.neo4j.graphdb.RelationshipType type,
Map<String,Object> properties)
GraphDatabasecreateRelationship in interface GraphDatabasepublic <T extends org.neo4j.graphdb.PropertyContainer> org.neo4j.graphdb.index.Index<T> getIndex(String indexName)
getIndex in interface GraphDatabaseindexName - existing index name, not nullIndexpublic <T extends org.neo4j.graphdb.PropertyContainer> org.neo4j.graphdb.index.Index<T> createIndex(Class<T> type, String indexName, IndexType indexType)
GraphDatabasecreateIndex in interface GraphDatabasetype - type of index requested - either Node.class or Relationship.classindexType - SIMPLE, FULLTEXT or POINT declaring the requested index-typeIndexpublic org.neo4j.graphdb.traversal.TraversalDescription traversalDescription()
traversalDescription in interface GraphDatabasepublic <T> QueryEngine<T> queryEngineFor(QueryType type, ResultConverter resultConverter)
GraphDatabasequeryEngineFor in interface GraphDatabasepublic <T> QueryEngine<T> queryEngineFor(QueryType type)
GraphDatabasequeryEngineFor in interface GraphDatabasepublic void setConversionService(ConversionService conversionService)
setConversionService in interface GraphDatabaseconversionService - the conversion service to be used for the default result converter of this databasepublic boolean transactionIsRunning()
transactionIsRunning in interface GraphDatabasepublic TransactionManager getTransactionManager()
getTransactionManager in interface GraphDatabasepublic void remove(org.neo4j.graphdb.Node node)
GraphDatabaseremove in interface GraphDatabasepublic void remove(org.neo4j.graphdb.Relationship relationship)
GraphDatabaseremove in interface GraphDatabasepublic void setResultConverter(ResultConverter resultConverter)
setResultConverter in interface GraphDatabaseresultConverter - the default result converter to be used with this databaseCopyright © 2012 SpringSource. All Rights Reserved.