blob: d5a8b95c2c8c9bab3a29bfe645071913270ce727 [file] [log] [blame]
tom568581d2014-09-08 20:13:36 -07001package org.onlab.onos.net.topology;
2
3import org.onlab.graph.Vertex;
4import org.onlab.onos.net.DeviceId;
5
6/**
7 * Represents a vertex in the topology graph.
8 */
9public interface TopoVertex extends Vertex {
10
11 /**
12 * Returns the associated infrastructure device identification.
13 *
14 * @return device identifier
15 */
16 DeviceId deviceId();
17
18}