Package | Description |
---|---|
com.hp.sdn.ctl.json |
...
|
com.hp.sdn.link |
API for accessing & supplying information about network infrastructure links.
|
com.hp.sdn.model |
Base abstractions used in consuming & producing Network information model.
|
com.hp.sdn.topo |
API for retrieving information about network topology & connectivity.
|
com.hp.sdn.tvue |
Topology viewer API & domain model definitions.
|
Modifier and Type | Method and Description |
---|---|
Link |
LinkCodec.decode(com.fasterxml.jackson.databind.node.ObjectNode node) |
Modifier and Type | Method and Description |
---|---|
com.fasterxml.jackson.databind.node.ObjectNode |
LinkCodec.encode(Link link) |
Modifier and Type | Method and Description |
---|---|
Link |
LinkSupplierService.createOrUpdateLink(ConnectionPoint src,
ConnectionPoint dst,
LinkInfo linkInfo)
Returns a new or updated infrastructure
Link
and updates the link information store. |
Link |
LinkSupplierServiceAdapter.createOrUpdateLink(ConnectionPoint src,
ConnectionPoint dst,
LinkInfo linkInfo) |
Modifier and Type | Method and Description |
---|---|
Iterator<Link> |
LinkServiceAdapter.getLinks() |
Iterator<Link> |
LinkService.getLinks()
Returns an iterator over the set of all infrastructure links.
|
Set<Link> |
LinkServiceAdapter.getLinks(ConnectionPoint cp) |
Set<Link> |
LinkService.getLinks(ConnectionPoint cp)
Returns the link(s) that contain the given connection point.
|
Set<Link> |
LinkServiceAdapter.getLinks(DeviceId device) |
Set<Link> |
LinkService.getLinks(DeviceId device)
Returns the set of all links for which the given device is either
the source or the destination.
|
Set<Link> |
LinkServiceAdapter.getLinks(DeviceId deviceA,
DeviceId deviceB) |
Set<Link> |
LinkService.getLinks(DeviceId deviceA,
DeviceId deviceB)
Returns the set of all links between the two given devices.
|
Set<Link> |
LinkServiceAdapter.getLinksFrom(ConnectionPoint cp) |
Set<Link> |
LinkService.getLinksFrom(ConnectionPoint src)
Returns the set of all links for which this connection point
is the source.
|
Set<Link> |
LinkServiceAdapter.getLinksFrom(DeviceId device) |
Set<Link> |
LinkService.getLinksFrom(DeviceId device)
Returns the set of all links for which this device is the source.
|
Set<Link> |
LinkServiceAdapter.getLinksTo(ConnectionPoint cp) |
Set<Link> |
LinkService.getLinksTo(ConnectionPoint dst)
Returns the set of all links for which this connection point
is the destination.
|
Set<Link> |
LinkServiceAdapter.getLinksTo(DeviceId device) |
Set<Link> |
LinkService.getLinksTo(DeviceId device)
Returns the set of all links for which this device is
the destination.
|
Modifier and Type | Method and Description |
---|---|
boolean |
LinkSourceFilter.matches(Link link) |
boolean |
LinkFilter.matches(Link link)
Test whether the given
Link matches this filter |
boolean |
LinkDestFilter.matches(Link link) |
boolean |
LinkPointFilter.matches(Link link) |
Constructor and Description |
---|
DefaultLinkEvent(LinkEvent.Type type,
Link subject)
Constructs a link event with the given type and link subject.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NodeLink
Node Link is a logical association of a
ConnectionPoint
and a Node . |
interface |
Path
Path is an ordered collection of
links , where adjoining links'
connection points share the same device . |
Modifier and Type | Class and Description |
---|---|
class |
DefaultLink
Provides a default implementation of
Link . |
class |
DefaultNodeLink
Default implementation of a node link.
|
class |
DefaultPath
Default implementation of a network path.
|
Modifier and Type | Method and Description |
---|---|
List<Link> |
DefaultPath.links() |
List<Link> |
Path.links()
Directed set of links representing the network path.
|
Modifier and Type | Method and Description |
---|---|
int |
LinkComparator.compare(Link link,
Link link2) |
Constructor and Description |
---|
DefaultPath(List<Link> links)
Create a path from the specified list of links.
|
Modifier and Type | Method and Description |
---|---|
Link |
TopoEdge.link()
Returns the backing link.
|
Modifier and Type | Method and Description |
---|---|
Set<Link> |
TopologyData.clusterLinks(TopologyCluster cluster)
Returns the set of links that belong to the cluster.
|
Modifier and Type | Method and Description |
---|---|
double |
LinkWeight.weight(Link link)
Return the weight of the specified link.
|
Constructor and Description |
---|
TopoEdge(TopoVertex src,
TopoVertex dst,
Link link)
Creates an edge representing the given link.
|
Modifier and Type | Method and Description |
---|---|
Set<Link> |
TopologyViewerService.getLinks()
Returns all links.
|
Modifier and Type | Method and Description |
---|---|
String |
TopologyViewerService.getPathLinkAnnotation(Link link)
Provides packetCount and bytecount for a path link
when follow flow is selected
|
Copyright © 2015. All Rights Reserved.