blob: ef94eca6d52c9010aa25475fb0f86ae50f883fe7 [file] [log] [blame]
tom568581d2014-09-08 20:13:36 -07001package org.onlab.onos.net.topology;
2
3import org.onlab.graph.Edge;
4import org.onlab.onos.net.Link;
5
6/**
7 * Represents an edge in the topology graph.
8 */
9public interface TopoEdge extends Edge<TopoVertex> {
10
11 /**
12 * Returns the associated infrastructure link.
13 *
14 * @return backing infrastructure link
15 */
16 Link link();
17
18}