blob: 96a918f6fb1e8707c19e2fa3ada32ce6d6141baa [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 */
tom97937552014-09-11 10:48:42 -07009public interface TopologyVertex extends Vertex {
tom568581d2014-09-08 20:13:36 -070010
11 /**
12 * Returns the associated infrastructure device identification.
13 *
14 * @return device identifier
15 */
16 DeviceId deviceId();
17
18}