Spring Data Neo4j

org.springframework.data.neo4j.repository
Interface RelationshipOperationsRepository<T>

All Known Implementing Classes:
NodeGraphRepositoryImpl

public interface RelationshipOperationsRepository<T>

Since:
05.11.11
Author:
mh

Method Summary
<R> R
createDuplicateRelationshipBetween(T start, Object end, Class<R> relationshipEntityClass, String relationshipType)
           
<R> R
createRelationshipBetween(T start, Object end, Class<R> relationshipEntityClass, String relationshipType)
           
 void deleteRelationshipBetween(T start, Object end, String type)
           
<R> R
getRelationshipBetween(T start, Object end, Class<R> relationshipEntityClass, String relationshipType)
           
 

Method Detail

createRelationshipBetween

<R> R createRelationshipBetween(T start,
                                Object end,
                                Class<R> relationshipEntityClass,
                                String relationshipType)

createDuplicateRelationshipBetween

<R> R createDuplicateRelationshipBetween(T start,
                                         Object end,
                                         Class<R> relationshipEntityClass,
                                         String relationshipType)

getRelationshipBetween

<R> R getRelationshipBetween(T start,
                             Object end,
                             Class<R> relationshipEntityClass,
                             String relationshipType)

deleteRelationshipBetween

void deleteRelationshipBetween(T start,
                               Object end,
                               String type)

Spring Data Neo4j

Copyright © 2011 SpringSource. All Rights Reserved.