blob: 1c5e22b5e680bedf013c99c9adf86ad0c0173024 [file] [log] [blame]
package org.onlab.onos.net;
/**
* Base abstraction of a network element, i.e. an infrastructure device or an end-station host.
*/
public interface Element extends Annotated, Provided {
/**
* Returns the network element identifier.
*
* @return element identifier
*/
ElementId id();
}