Interface GraphRepository
-
- All Known Implementing Classes:
DefaultGraphRepository
public interface GraphRepositoryTheGraphRepositoryallows persisting any givenImmutableGraphContainerorGraphContainerInfo. Please ensure that the implementing side knows how to persist the property values accordingly (e.g. custom types)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteContainer(java.lang.String containerId)GenericGraphContainerfindContainerById(java.lang.String containerId)GraphContainerInfofindContainerInfoById(java.lang.String containerId)voidsave(ImmutableGraphContainer graphContainer)voidsave(GraphContainerInfo containerInfo)
-
-
-
Method Detail
-
save
void save(ImmutableGraphContainer graphContainer)
-
save
void save(GraphContainerInfo containerInfo)
-
findContainerById
GenericGraphContainer findContainerById(java.lang.String containerId)
-
findContainerInfoById
GraphContainerInfo findContainerInfoById(java.lang.String containerId)
-
deleteContainer
void deleteContainer(java.lang.String containerId)
-
-