blob: 1c5e22b5e680bedf013c99c9adf86ad0c0173024 [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 */
tom3ea11252014-10-02 04:32:26 -07006public interface Element extends Annotated, Provided {
tomb36046e2014-08-27 00:22:24 -07007
8 /**
9 * Returns the network element identifier.
10 *
11 * @return element identifier
12 */
13 ElementId id();
14
15}