Uses of Interface
org.opendaylight.graph.ConnectedVertex
-
Packages that use ConnectedVertex Package Description org.opendaylight.algo.impl org.opendaylight.bgpcep.pcep.server.provider org.opendaylight.graph org.opendaylight.graph.impl -
-
Uses of ConnectedVertex in org.opendaylight.algo.impl
Methods in org.opendaylight.algo.impl that return ConnectedVertex Modifier and Type Method Description ConnectedVertex
CspfPath. getVertex()
Methods in org.opendaylight.algo.impl with parameters of type ConnectedVertex Modifier and Type Method Description protected @Nullable MplsLabel
AbstractPathComputation. getIpv4NodeSid(ConnectedVertex cvertex)
Return the MPLS Label corresponding to the Node SID for IPv4 when the Connected Vertex is Segment Routing aware.protected @Nullable MplsLabel
AbstractPathComputation. getIpv6NodeSid(ConnectedVertex cvertex)
Return the MPLS Label corresponding to the Node SID for IPv6 when the Connected Vertex is Segment Routing aware.Constructors in org.opendaylight.algo.impl with parameters of type ConnectedVertex Constructor Description CspfPath(ConnectedVertex vertex)
-
Uses of ConnectedVertex in org.opendaylight.bgpcep.pcep.server.provider
Methods in org.opendaylight.bgpcep.pcep.server.provider with parameters of type ConnectedVertex Modifier and Type Method Description boolean
ManagedTePath. verifyVertex(@Nullable ConnectedVertex next, @Nullable Vertex current)
void
PathManagerProvider. verifyVertex(Collection<ConnectedVertexTrigger> triggers, @Nullable ConnectedVertex current, @Nullable Vertex next)
-
Uses of ConnectedVertex in org.opendaylight.graph
Methods in org.opendaylight.graph that return ConnectedVertex Modifier and Type Method Description ConnectedVertex
ConnectedGraph. addVertex(Vertex vertex)
Add Vertex in the Connected Graph.ConnectedVertex
ConnectedGraph. getConnectedVertex(@NonNull Long key)
Returns the Vertex associated to the given key.ConnectedVertex
ConnectedGraph. getConnectedVertex(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress address)
Returns the Vertex associated to the given IP address.@Nullable ConnectedVertex
ConnectedEdge. getDestination()
Returns the destination Connected Vertex from the Connected Graph associated to this Connected Edge.@Nullable ConnectedVertex
ConnectedEdge. getSource()
Returns the source Connected Vertex from the Connected Graph associated to this Connected Edge.Methods in org.opendaylight.graph that return types with arguments of type ConnectedVertex Modifier and Type Method Description List<ConnectedVertex>
ConnectedGraph. getVertices()
Returns the list of Connected Vertices that form this graph.Methods in org.opendaylight.graph with parameters of type ConnectedVertex Modifier and Type Method Description void
ConnectedGraphTrigger. verifyVertex(Collection<ConnectedVertexTrigger> triggers, @Nullable ConnectedVertex next, @Nullable Vertex current)
This method verifies the next Vertex attributes against the current one to determine if is necessary to launch correction which are left at the discretion of the class which implements this method.boolean
ConnectedVertexTrigger. verifyVertex(@Nullable ConnectedVertex next, @Nullable Vertex current)
This method verifies the next Vertex attribute against the current one to determine if is necessary to launch correction which are left at the discretion of the class which implements this method. -
Uses of ConnectedVertex in org.opendaylight.graph.impl
Classes in org.opendaylight.graph.impl that implement ConnectedVertex Modifier and Type Class Description class
ConnectedVertexImpl
This Class implements the Connected Vertex used by the Connected Graph for path computation algorithms.Methods in org.opendaylight.graph.impl that return ConnectedVertex Modifier and Type Method Description ConnectedVertex
ConnectedGraphImpl. addVertex(Vertex vertex)
ConnectedVertex
ConnectedGraphImpl. getConnectedVertex(Long key)
ConnectedVertex
ConnectedGraphImpl. getConnectedVertex(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress address)
ConnectedVertex
ConnectedEdgeImpl. getDestination()
ConnectedVertex
ConnectedEdgeImpl. getSource()
Methods in org.opendaylight.graph.impl that return types with arguments of type ConnectedVertex Modifier and Type Method Description List<ConnectedVertex>
ConnectedGraphImpl. getVertices()
-