blob: 83af07c0198565bf60df6e75754f82f6682d6159 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.onlab.onos.net.link;
2
tom4c6606f2014-09-07 11:11:21 -07003import org.onlab.onos.net.ConnectPoint;
4
tom0eb04ca2014-08-25 14:34:51 -07005/**
6 * Describes an infrastructure link.
7 */
8public interface LinkDescription {
9
tom4c6606f2014-09-07 11:11:21 -070010 /**
11 * Returns the link source.
12 *
13 * @return links source
14 */
15 ConnectPoint src();
tom0eb04ca2014-08-25 14:34:51 -070016
tom4c6606f2014-09-07 11:11:21 -070017 /**
18 * Returns the link destination.
19 *
20 * @return links destination
21 */
22 ConnectPoint dst();
tom0eb04ca2014-08-25 14:34:51 -070023
tom4c6606f2014-09-07 11:11:21 -070024 // Add further link attributes
tom0eb04ca2014-08-25 14:34:51 -070025}