Interface GraphService
-
- All Known Implementing Classes:
CachingGraphService
,DefaultGraphService
public interface GraphService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default GenericGraph
getGraph(String namespace)
GenericGraph
getGraph(String containerId, String graphNamespace)
GenericGraphContainer
getGraphContainer(String containerId)
GraphContainerInfo
getGraphContainerInfo(String containerId)
GraphContainerInfo
getGraphContainerInfoByNamespace(String namespace)
List<GraphContainerInfo>
getGraphContainerInfos()
GraphInfo
getGraphInfo(String graphNamespace)
-
-
-
Method Detail
-
getGraphContainerInfos
List<GraphContainerInfo> getGraphContainerInfos()
-
getGraphContainerInfo
GraphContainerInfo getGraphContainerInfo(String containerId)
-
getGraphContainerInfoByNamespace
GraphContainerInfo getGraphContainerInfoByNamespace(String namespace)
-
getGraphContainer
GenericGraphContainer getGraphContainer(String containerId)
-
getGraph
GenericGraph getGraph(String containerId, String graphNamespace)
-
getGraph
default GenericGraph getGraph(String namespace)
-
-