blob: 8d712f05d1d0125cae5342696a6efe2740cef5da [file] [log] [blame]
package org.onlab.onos.net.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
}