Interface GraphRepository
-
- All Known Implementing Classes:
DefaultGraphRepository
public interface GraphRepository
TheGraphRepository
allows persisting any givenImmutableGraphContainer
orGraphContainerInfo
. 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 void
deleteContainer(String containerId)
GenericGraphContainer
findContainerById(String containerId)
GraphContainerInfo
findContainerInfoById(String containerId)
void
save(ImmutableGraphContainer graphContainer)
void
save(GraphContainerInfo containerInfo)
-
-
-
Method Detail
-
save
void save(ImmutableGraphContainer graphContainer)
-
save
void save(GraphContainerInfo containerInfo)
-
findContainerById
GenericGraphContainer findContainerById(String containerId)
-
findContainerInfoById
GraphContainerInfo findContainerInfoById(String containerId)
-
deleteContainer
void deleteContainer(String containerId)
-
-