blob: 5d3969e13e54f07f8c7e4e2274103b78fd45423b [file] [log] [blame]
tomb36046e2014-08-27 00:22:24 -07001package org.onlab.onos.net;
2
tomb36046e2014-08-27 00:22:24 -07003/**
4 * Base abstraction of a network element, i.e. an infrastructure device or an end-station host.
5 */
6public interface Element extends Provided {
7
8 /**
9 * Returns the network element identifier.
10 *
11 * @return element identifier
12 */
13 ElementId id();
14
15}