blob: ef94eca6d52c9010aa25475fb0f86ae50f883fe7 [file] [log] [blame]
package org.onlab.onos.net.topology;
import org.onlab.graph.Edge;
import org.onlab.onos.net.Link;
/**
* Represents an edge in the topology graph.
*/
public interface TopoEdge extends Edge<TopoVertex> {
/**
* Returns the associated infrastructure link.
*
* @return backing infrastructure link
*/
Link link();
}