Spring Data Neo4j

Uses of Class
org.springframework.data.neo4j.support.mapping.Neo4jMappingContext

Packages that use Neo4jMappingContext
org.springframework.data.neo4j.config   
org.springframework.data.neo4j.cross_store.support.node   
org.springframework.data.neo4j.mapping   
org.springframework.data.neo4j.repository   
org.springframework.data.neo4j.repository.query   
org.springframework.data.neo4j.support   
org.springframework.data.neo4j.support.index   
org.springframework.data.neo4j.support.mapping   
org.springframework.data.neo4j.support.node   
org.springframework.data.neo4j.support.relationship   
org.springframework.data.neo4j.support.typerepresentation   
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.config
 

Methods in org.springframework.data.neo4j.config that return Neo4jMappingContext
 Neo4jMappingContext Neo4jConfiguration.neo4jMappingContext()
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.cross_store.support.node
 

Constructors in org.springframework.data.neo4j.cross_store.support.node with parameters of type Neo4jMappingContext
CrossStoreNodeEntityStateFactory(Neo4jMappingContext neo4jMappingContext, FieldAccessorFactoryFactory factory, javax.persistence.EntityManagerFactory entityManagerFactory)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.mapping
 

Methods in org.springframework.data.neo4j.mapping with parameters of type Neo4jMappingContext
static RelationshipInfo RelationshipInfo.fromField(Field field, RelatedTo annotation, org.springframework.data.util.TypeInformation<?> typeInformation, Neo4jMappingContext ctx)
           
static RelationshipInfo RelationshipInfo.fromField(Field field, RelatedToVia annotation, org.springframework.data.util.TypeInformation<?> typeInformation, Neo4jMappingContext ctx)
           
static RelationshipInfo RelationshipInfo.fromField(Field field, org.springframework.data.util.TypeInformation<?> typeInformation, Neo4jMappingContext ctx)
           
 

Constructors in org.springframework.data.neo4j.mapping with parameters of type Neo4jMappingContext
RelationshipInfo(String type, org.neo4j.graphdb.Direction direction, org.springframework.data.util.TypeInformation<?> typeInformation, org.springframework.data.util.TypeInformation<?> concreteActualType, Neo4jMappingContext ctx)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.repository
 

Methods in org.springframework.data.neo4j.repository with parameters of type Neo4jMappingContext
 void GraphRepositoryFactoryBean.setNeo4jMappingContext(Neo4jMappingContext neo4jMappingContext)
           
 

Constructors in org.springframework.data.neo4j.repository with parameters of type Neo4jMappingContext
GraphRepositoryFactory(Neo4jTemplate template, Neo4jMappingContext mappingContext)
          Creates a new GraphRepositoryFactory from the given Neo4jTemplate and MappingContext.
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.repository.query
 

Constructors in org.springframework.data.neo4j.repository.query with parameters of type Neo4jMappingContext
DerivedCypherRepositoryQuery(Neo4jMappingContext mappingContext, GraphQueryMethod queryMethod, Neo4jTemplate template)
          Creates a new DerivedCypherRepositoryQuery from the given MappingContext, GraphQueryMethod and Neo4jTemplate.
GraphQueryMethod(Method method, org.springframework.data.repository.core.RepositoryMetadata metadata, org.springframework.data.repository.core.NamedQueries namedQueries, Neo4jMappingContext mappingContext)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support
 

Methods in org.springframework.data.neo4j.support that return Neo4jMappingContext
 Neo4jMappingContext MappingInfrastructureFactoryBean.getMappingContext()
           
 Neo4jMappingContext MappingInfrastructure.getMappingContext()
           
 Neo4jMappingContext Infrastructure.getMappingContext()
           
 

Methods in org.springframework.data.neo4j.support with parameters of type Neo4jMappingContext
 void MappingInfrastructureFactoryBean.setMappingContext(Neo4jMappingContext mappingContext)
           
 

Constructors in org.springframework.data.neo4j.support with parameters of type Neo4jMappingContext
MappingInfrastructure(GraphDatabase graphDatabase, org.neo4j.graphdb.GraphDatabaseService graphDatabaseService, IndexProvider indexProvider, ResultConverter resultConverter, PlatformTransactionManager transactionManager, TypeRepresentationStrategies typeRepresentationStrategies, EntityRemover entityRemover, Neo4jEntityPersister entityPersister, EntityStateHandler entityStateHandler, CypherQueryExecutor cypherQueryExecutor, Neo4jMappingContext mappingContext, TypeRepresentationStrategy<org.neo4j.graphdb.Relationship> relationshipTypeRepresentationStrategy, TypeRepresentationStrategy<org.neo4j.graphdb.Node> nodeTypeRepresentationStrategy, javax.validation.Validator validator, ConversionService conversionService)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support.index
 

Constructors in org.springframework.data.neo4j.support.index with parameters of type Neo4jMappingContext
IndexProviderImpl(Neo4jMappingContext mappingContext, GraphDatabase graphDatabase)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support.mapping
 

Constructors in org.springframework.data.neo4j.support.mapping with parameters of type Neo4jMappingContext
EntityStateHandler(Neo4jMappingContext mappingContext, GraphDatabase graphDatabase)
           
EntityTools(TypeRepresentationStrategy<S> typeRepresentationStrategy, EntityStateFactory<S> entityStateFactory, EntityInstantiator<S> entityInstantiator, Neo4jMappingContext ctx)
           
HierarchicalTypeInformationMapper(Neo4jMappingContext ctx)
           
Neo4jEntityConverterImpl(Neo4jMappingContext mappingContext, ConversionService conversionService, EntityStateHandler entityStateHandler, Neo4jEntityFetchHandler entityFetchHandler, EntityTools<S> entityTools)
           
Neo4jEntityPersister(ConversionService conversionService, EntityTools<org.neo4j.graphdb.Node> nodeEntityTools, EntityTools<org.neo4j.graphdb.Relationship> relationshipEntityTools, Neo4jMappingContext mappingContext, EntityStateHandler entityStateHandler)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support.node
 

Fields in org.springframework.data.neo4j.support.node declared as Neo4jMappingContext
protected  Neo4jMappingContext NodeEntityStateFactory.mappingContext
           
 

Constructors in org.springframework.data.neo4j.support.node with parameters of type Neo4jMappingContext
NodeEntityStateFactory(Neo4jMappingContext mappingContext, FieldAccessorFactoryFactory nodeDelegatingFieldAccessorFactory)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support.relationship
 

Constructors in org.springframework.data.neo4j.support.relationship with parameters of type Neo4jMappingContext
RelationshipEntityStateFactory(Neo4jMappingContext mappingContext, FieldAccessorFactoryFactory relationshipDelegatingFieldAccessorFactory)
           
 

Uses of Neo4jMappingContext in org.springframework.data.neo4j.support.typerepresentation
 

Constructors in org.springframework.data.neo4j.support.typerepresentation with parameters of type Neo4jMappingContext
TypeRepresentationStrategies(Neo4jMappingContext mappingContext, TypeRepresentationStrategy<org.neo4j.graphdb.Node> nodeTypeRepresentationStrategy, TypeRepresentationStrategy<org.neo4j.graphdb.Relationship> relationshipTypeRepresentationStrategy)
           
 


Spring Data Neo4j

Copyright © 2012 SpringSource. All Rights Reserved.