blob: c40f52271d4ed1b31fe0c80439a04a3663a9b49b [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package net.onrc.onos.api.link;
2
3/**
4 * Describes an infrastructure link.
5 */
6public interface LinkDescription {
7
8 // TODO: src, dst connection points, which are pairs of (DeviceId, PortNumber)
9
10// On the north:
11// Link = (ConnectPoint src, ConnectPoint dst);
12// ConnectPoint = (DeviceId, PortNumber);
13
14// On the south
15// LinkDescription ~ Link
16
17}