blob: d9cd6f4c43e64906496e478f0ca81b755691484b [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 */
tom97937552014-09-11 10:48:42 -07009public interface TopologyEdge extends Edge<TopologyVertex> {
tom568581d2014-09-08 20:13:36 -070010
11 /**
12 * Returns the associated infrastructure link.
13 *
14 * @return backing infrastructure link
15 */
16 Link link();
17
18}