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