Uses of Interface
org.opendaylight.graph.ConnectedEdge
-
Packages that use ConnectedEdge Package Description org.opendaylight.algo.impl org.opendaylight.bgpcep.pcep.server.provider org.opendaylight.graph org.opendaylight.graph.impl -
-
Uses of ConnectedEdge in org.opendaylight.algo.impl
Methods in org.opendaylight.algo.impl that return types with arguments of type ConnectedEdge Modifier and Type Method Description List<ConnectedEdge>
CspfPath. getPath()
Methods in org.opendaylight.algo.impl with parameters of type ConnectedEdge Modifier and Type Method Description CspfPath
CspfPath. addConnectedEdge(ConnectedEdge edge)
protected boolean
AbstractPathComputation. pruneEdge(ConnectedEdge edge, CspfPath path)
Check if Edge need to be prune regarding all constraints including address family.Method parameters in org.opendaylight.algo.impl with type arguments of type ConnectedEdge Modifier and Type Method Description protected List<PathDescription>
AbstractPathComputation. getPathDescription(List<ConnectedEdge> edges)
Convert List of Connected Edges into a Path Description as a List of IPv4, IPv6 or MPLS Label depending of the requested Address Family.CspfPath
CspfPath. replacePath(List<ConnectedEdge> list)
-
Uses of ConnectedEdge in org.opendaylight.bgpcep.pcep.server.provider
Methods in org.opendaylight.bgpcep.pcep.server.provider with parameters of type ConnectedEdge Modifier and Type Method Description boolean
ManagedTePath. verifyEdge(@Nullable ConnectedEdge next, @Nullable Edge current)
void
PathManagerProvider. verifyEdge(Collection<ConnectedEdgeTrigger> triggers, @Nullable ConnectedEdge current, @Nullable Edge next)
-
Uses of ConnectedEdge in org.opendaylight.graph
Methods in org.opendaylight.graph that return ConnectedEdge Modifier and Type Method Description ConnectedEdge
ConnectedGraph. addEdge(Edge edge)
Add Edge in the Connected Graph.ConnectedEdge
ConnectedGraph. getConnectedEdge(@NonNull Long key)
Returns the Edge associated to the given key.ConnectedEdge
ConnectedGraph. getConnectedEdge(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress address)
Returns the Edge associated to the given IP address.Methods in org.opendaylight.graph that return types with arguments of type ConnectedEdge Modifier and Type Method Description List<ConnectedEdge>
ConnectedGraph. getEdges()
Returns the list of Connected Edges that form this graph.List<ConnectedEdge>
ConnectedVertex. getEdgeTo(Long destinationKey)
Returns Connected Edges that has for destination the Connected Vertex identified by its key.List<ConnectedEdge>
ConnectedVertex. getInputConnectedEdges()
Returns the list of incoming Connected Edge for this Connected Vertex.List<ConnectedEdge>
ConnectedVertex. getOutputConnectedEdges()
Returns the list of outgoing Connected Edge for this Connected Vertex.Methods in org.opendaylight.graph with parameters of type ConnectedEdge Modifier and Type Method Description boolean
ConnectedEdgeTrigger. verifyEdge(@Nullable ConnectedEdge next, @Nullable Edge current)
This method verifies the next Edge 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.void
ConnectedGraphTrigger. verifyEdge(Collection<ConnectedEdgeTrigger> triggers, @Nullable ConnectedEdge next, @Nullable Edge current)
This method verifies the next Edge 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. -
Uses of ConnectedEdge in org.opendaylight.graph.impl
Classes in org.opendaylight.graph.impl that implement ConnectedEdge Modifier and Type Class Description class
ConnectedEdgeImpl
This Class implements the Connected Edge used by the Connected Graph for path computation algorithms.Methods in org.opendaylight.graph.impl that return ConnectedEdge Modifier and Type Method Description ConnectedEdge
ConnectedGraphImpl. addEdge(Edge edge)
ConnectedEdge
ConnectedGraphImpl. getConnectedEdge(Long key)
ConnectedEdge
ConnectedGraphImpl. getConnectedEdge(org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.IpAddress address)
Methods in org.opendaylight.graph.impl that return types with arguments of type ConnectedEdge Modifier and Type Method Description List<ConnectedEdge>
ConnectedGraphImpl. getEdges()
List<ConnectedEdge>
ConnectedVertexImpl. getEdgeTo(Long dstRid)
List<ConnectedEdge>
ConnectedVertexImpl. getInputConnectedEdges()
List<ConnectedEdge>
ConnectedVertexImpl. getOutputConnectedEdges()
-