blob: c40f52271d4ed1b31fe0c80439a04a3663a9b49b [file] [log] [blame]
package net.onrc.onos.api.link;
/**
* Describes an infrastructure link.
*/
public interface LinkDescription {
// TODO: src, dst connection points, which are pairs of (DeviceId, PortNumber)
// On the north:
// Link = (ConnectPoint src, ConnectPoint dst);
// ConnectPoint = (DeviceId, PortNumber);
// On the south
// LinkDescription ~ Link
}