Package com.hp.ucmdb.api.topology
Interface Graph
- All Known Subinterfaces:
LiveTopology
,Topology
public interface Graph
- Since:
- 8.0
-
Method Summary
Modifier and TypeMethodDescriptionReturns the collection of all CIs in this graph.Returns all CIs in this result as a map from ID to CI.Returns the collection of all relations in this graph.Returns all relations in this graph as a map from ID to relation.Returns the CI with the specified ID.getRelation
(UcmdbId ucmdbId) Returns the Relation with the specified ID.
-
Method Details
-
getAllCIs
Collection<TopologyCI> getAllCIs()Returns the collection of all CIs in this graph. -
getAllCIsAsMap
Map<UcmdbId,TopologyCI> getAllCIsAsMap()Returns all CIs in this result as a map from ID to CI.- See Also:
-
getCI
Returns the CI with the specified ID. -
getRelation
Returns the Relation with the specified ID. -
getAllRelations
Collection<TopologyRelation> getAllRelations()Returns the collection of all relations in this graph. -
getAllRelationsAsMap
Map<UcmdbId,TopologyRelation> getAllRelationsAsMap()Returns all relations in this graph as a map from ID to relation.
-