blob: 83af07c0198565bf60df6e75754f82f6682d6159 [file] [log] [blame]
package org.onlab.onos.net.link;
import org.onlab.onos.net.ConnectPoint;
/**
* Describes an infrastructure link.
*/
public interface LinkDescription {
/**
* Returns the link source.
*
* @return links source
*/
ConnectPoint src();
/**
* Returns the link destination.
*
* @return links destination
*/
ConnectPoint dst();
// Add further link attributes
}