Interface BusinessServiceGraph
-
- All Superinterfaces:
edu.uci.ics.jung.graph.DirectedGraph<GraphVertex,GraphEdge>
,edu.uci.ics.jung.graph.Graph<GraphVertex,GraphEdge>
,edu.uci.ics.jung.graph.Hypergraph<GraphVertex,GraphEdge>
- All Known Implementing Classes:
BusinessServiceGraphImpl
public interface BusinessServiceGraph extends edu.uci.ics.jung.graph.DirectedGraph<GraphVertex,GraphEdge>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GraphEdge
getGraphEdgeByEdgeId(java.lang.Long id)
java.util.Set<java.lang.String>
getReductionKeys()
GraphVertex
getVertexByApplicationId(java.lang.Integer id)
GraphVertex
getVertexByBusinessServiceId(java.lang.Long id)
GraphVertex
getVertexByEdgeId(java.lang.Long id)
GraphVertex
getVertexByIpServiceId(java.lang.Integer id)
GraphVertex
getVertexByReductionKey(java.lang.String reductionKey)
java.util.Set<GraphVertex>
getVerticesByLevel(int level)
-
Methods inherited from interface edu.uci.ics.jung.graph.Graph
addEdge, addEdge, getDest, getEndpoints, getInEdges, getOpposite, getOutEdges, getPredecessorCount, getPredecessors, getSource, getSuccessorCount, getSuccessors, inDegree, isDest, isPredecessor, isSource, isSuccessor, outDegree
-
Methods inherited from interface edu.uci.ics.jung.graph.Hypergraph
addEdge, addEdge, addVertex, containsEdge, containsVertex, degree, findEdge, findEdgeSet, getDefaultEdgeType, getEdgeCount, getEdgeCount, getEdges, getEdges, getEdgeType, getIncidentCount, getIncidentEdges, getIncidentVertices, getNeighborCount, getNeighbors, getVertexCount, getVertices, isIncident, isNeighbor, removeEdge, removeVertex
-
-
-
-
Method Detail
-
getVerticesByLevel
java.util.Set<GraphVertex> getVerticesByLevel(int level)
-
getVertexByBusinessServiceId
GraphVertex getVertexByBusinessServiceId(java.lang.Long id)
-
getVertexByReductionKey
GraphVertex getVertexByReductionKey(java.lang.String reductionKey)
-
getVertexByIpServiceId
GraphVertex getVertexByIpServiceId(java.lang.Integer id)
-
getVertexByApplicationId
GraphVertex getVertexByApplicationId(java.lang.Integer id)
-
getVertexByEdgeId
GraphVertex getVertexByEdgeId(java.lang.Long id)
-
getGraphEdgeByEdgeId
GraphEdge getGraphEdgeByEdgeId(java.lang.Long id)
-
getReductionKeys
java.util.Set<java.lang.String> getReductionKeys()
-
-