本文整理汇总了Java中org.onosproject.net.link.LinkService.getLinks方法的典型用法代码示例。如果您正苦于以下问题:Java LinkService.getLinks方法的具体用法?Java LinkService.getLinks怎么用?Java LinkService.getLinks使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.onosproject.net.link.LinkService
的用法示例。
在下文中一共展示了LinkService.getLinks方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getLinks
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
/**
* Gets infrastructure links.
* Returns array of all links, or links for the specified device or port.
* @onos.rsModel LinksGet
* @param deviceId (optional) device identifier
* @param port (optional) port number
* @param direction (optional) direction qualifier
* @return 200 OK with array of all links, or links for the specified device or port
*/
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getLinks(@QueryParam("device") String deviceId,
@QueryParam("port") String port,
@QueryParam("direction") String direction) {
LinkService service = get(LinkService.class);
Iterable<Link> links;
if (deviceId != null && port != null) {
links = getConnectPointLinks(new ConnectPoint(deviceId(deviceId),
portNumber(port)),
direction, service);
} else if (deviceId != null) {
links = getDeviceLinks(deviceId(deviceId), direction, service);
} else {
links = service.getLinks();
}
return ok(encodeArray(Link.class, "links", links)).build();
}
示例2: getLinks
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
@GET
public Response getLinks(@QueryParam("device") String deviceId,
@QueryParam("port") String port,
@QueryParam("direction") String direction) {
LinkService service = get(LinkService.class);
Iterable<Link> links;
if (deviceId != null && port != null) {
links = getConnectPointLinks(new ConnectPoint(deviceId(deviceId),
portNumber(port)),
direction, service);
} else if (deviceId != null) {
links = getDeviceLinks(deviceId(deviceId), direction, service);
} else {
links = service.getLinks();
}
return ok(encodeArray(Link.class, "links", links)).build();
}
示例3: getConnectPointLinks
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
private Iterable<Link> getConnectPointLinks(ConnectPoint point,
String direction,
LinkService service) {
Direction dir = direction != null ?
Direction.valueOf(direction.toUpperCase()) : Direction.ALL;
switch (dir) {
case INGRESS:
return service.getIngressLinks(point);
case EGRESS:
return service.getEgressLinks(point);
default:
return service.getLinks(point);
}
}
示例4: execute
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
@Override
protected void execute() {
LinkService service = get(LinkService.class);
Iterable<Link> links = uri != null ?
service.getDeviceLinks(deviceId(uri)) : service.getLinks();
if (outputJson()) {
print("%s", json(this, links));
} else {
for (Link link : links) {
print(linkString(link));
}
}
}
示例5: getConnectPointLinks
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
private Iterable<Link> getConnectPointLinks(ConnectPoint point,
String direction,
LinkService service) {
Direction dir = direction != null ?
valueOf(direction.toUpperCase()) : Direction.ALL;
switch (dir) {
case INGRESS:
return service.getIngressLinks(point);
case EGRESS:
return service.getEgressLinks(point);
default:
return service.getLinks(point);
}
}
示例6: execute
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
@Override
protected void execute() {
LinkService service = get(LinkService.class);
Iterable<Link> links = uri != null ?
service.getDeviceLinks(deviceId(uri)) : service.getLinks();
if (outputJson()) {
print("%s", json(links));
} else {
for (Link link : links) {
print(linkString(link));
}
}
}
示例7: testGetLinksByNullId
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
/**
* Tests querying for links using a null connect point.
*/
@Test(expected = NullPointerException.class)
public void testGetLinksByNullId() {
manager.registerTenantId(TenantId.tenantId(tenantIdValue1));
VirtualNetwork virtualNetwork = manager.createVirtualNetwork(TenantId.tenantId(tenantIdValue1));
LinkService linkService = manager.get(virtualNetwork.id(), LinkService.class);
// test the getLinks() method with a null connect point.
linkService.getLinks(null);
}
示例8: execute
import org.onosproject.net.link.LinkService; //导入方法依赖的package包/类
@Override
protected void execute() {
LinkService service = get(LinkService.class);
Iterable<Link> links = uri != null ?
service.getDeviceLinks(deviceId(uri)) : service.getLinks();
if (outputJson()) {
print("%s", json(this, links));
} else {
Tools.stream(links)
.sorted(Comparator.comparing(link -> linkKey(link).toString()))
.forEach(link -> {
print(linkString(link));
});
}
}