blob: 8d712f05d1d0125cae5342696a6efe2740cef5da [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.onlab.onos.net.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}