Interface GraphInfo
-
- All Known Subinterfaces:
ImmutableGraph<V,E>
- All Known Implementing Classes:
AbstractDomainGraph
,ApplicationGraph
,BusinessServiceGraph
,CustomGraph
,DefaultGraphInfo
,GenericGraph
,LegacyGraph
,SimpleDomainGraph
public interface GraphInfo
Meta information of a graph. This allows to fetch a minimal set of information (namespace, label, description) without loading the whole graph.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
A short description of the graph to help user's understand what the context of the graph is, e.g.: "This provider shows the hierarchy of the defined Business Services and their computed operational states."String
getLabel()
A user friendly name/label of the graph, e.g.String
getNamespace()
The namespace of the graph.
-
-
-
Method Detail
-
getNamespace
String getNamespace()
The namespace of the graph. Should be unique over all Graphs
-
getDescription
String getDescription()
A short description of the graph to help user's understand what the context of the graph is, e.g.: "This provider shows the hierarchy of the defined Business Services and their computed operational states."
-
getLabel
String getLabel()
A user friendly name/label of the graph, e.g. "Business Service Graph"
-
-