blob: 5d3969e13e54f07f8c7e4e2274103b78fd45423b [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 Provided {
/**
* Returns the network element identifier.
*
* @return element identifier
*/
ElementId id();
}