Class SyncopeNeo4jRepository<T,ID>

java.lang.Object
org.springframework.data.neo4j.repository.support.SimpleNeo4jRepository<T,ID>
org.springframework.data.neo4j.repository.support.SyncopeNeo4jRepository<T,ID>
All Implemented Interfaces:
org.springframework.data.repository.CrudRepository<T,ID>, org.springframework.data.repository.PagingAndSortingRepository<T,ID>, org.springframework.data.repository.Repository<T,ID>

public class SyncopeNeo4jRepository<T,ID> extends org.springframework.data.neo4j.repository.support.SimpleNeo4jRepository<T,ID>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected static final org.springframework.data.neo4j.core.mapping.CypherGenerator
     
    protected final org.springframework.data.neo4j.repository.support.Neo4jEntityInformation<T,ID>
     
    protected final org.springframework.data.neo4j.core.mapping.Neo4jPersistentEntity<T>
     
    protected final org.springframework.data.neo4j.core.Neo4jOperations
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    SyncopeNeo4jRepository(org.springframework.data.neo4j.core.Neo4jOperations neo4jOperations, org.springframework.data.neo4j.repository.support.Neo4jEntityInformation<T,ID> entityInformation)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected NodeValidator
     
    <S extends T>
    S
    save(S entity)
     

    Methods inherited from class org.springframework.data.neo4j.repository.support.SimpleNeo4jRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAll, findAll, findAll, findAllById, findById, saveAll

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CYPHER_GENERATOR

      protected static final org.springframework.data.neo4j.core.mapping.CypherGenerator CYPHER_GENERATOR
    • neo4jOperations

      protected final org.springframework.data.neo4j.core.Neo4jOperations neo4jOperations
    • entityInformation

      protected final org.springframework.data.neo4j.repository.support.Neo4jEntityInformation<T,ID> entityInformation
    • entityMetaData

      protected final org.springframework.data.neo4j.core.mapping.Neo4jPersistentEntity<T> entityMetaData
  • Constructor Details

    • SyncopeNeo4jRepository

      public SyncopeNeo4jRepository(org.springframework.data.neo4j.core.Neo4jOperations neo4jOperations, org.springframework.data.neo4j.repository.support.Neo4jEntityInformation<T,ID> entityInformation)
  • Method Details

    • nodeValidator

      protected NodeValidator nodeValidator()
    • save

      public <S extends T> S save(S entity)
      Specified by:
      save in interface org.springframework.data.repository.CrudRepository<T,ID>
      Overrides:
      save in class org.springframework.data.neo4j.repository.support.SimpleNeo4jRepository<T,ID>