Uses of Interface
science.aist.neo4j.Neo4jRepository
-
Packages that use Neo4jRepository Package Description science.aist.neo4j.namespace science.aist.neo4j.reflective science.aist.neo4j.repository -
-
Uses of Neo4jRepository in science.aist.neo4j.namespace
Classes in science.aist.neo4j.namespace that implement Neo4jRepository Modifier and Type Class Description class
NamespaceAwareReflectiveNeo4JNodeRepositoryImpl<S>
Repository that also considers namespaces while handling Neo4J. -
Uses of Neo4jRepository in science.aist.neo4j.reflective
Classes in science.aist.neo4j.reflective that implement Neo4jRepository Modifier and Type Class Description class
ReflectiveNeo4JNodeRepositoryImpl<S>
Implementation ofAbstractNeo4JNodeRepositoyImpl
using java reflection TODO #8 compile repository classes to improve performanceclass
ReflectiveNeo4JRelationshipRepositoryImpl<S>
Implementation ofAbstractNeo4JRelationshipRepositoyImpl
using java reflection -
Uses of Neo4jRepository in science.aist.neo4j.repository
Classes in science.aist.neo4j.repository that implement Neo4jRepository Modifier and Type Class Description class
AbstractNeo4JNodeRepositoyImpl<S>
Quick notes about usage: This class should handle pretty much all the default stuff On a save all nodes without an id will be saved (propagating to ALL nodes through EVERY relationship!) We are currently only capable of handling (source)-[DIRECTED]->(target) unidirectional relationships from S to T. On a load the node plus all related nodes are returned.class
AbstractNeo4JRelationshipRepositoyImpl<S>
Quick notes about usage: This class should handle pretty much all the default stuff On a save all science.neo4j.nodes without an id will be saved (propagating to ALL science.neo4j.nodes through EVERY relationship!) We are currently only capable of handling (source)-[DIRECTED]->(target) unidirectional relationships from S to T. On a load the relationship + its source and target science.neo4j.nodes are loadedclass
AbstractNeo4JRepository<S,ID>
Intermediate class combining features both the node and relationship repositories both haveclass
FutureRepository
In case of cyclic dependencies between repositories we return a future repository that attempts to load when needed.
-