blob: b1d5f7fb0f8fce75c108cd692c2c8cc0b7db11f7 [file] [log] [blame]
package org.onlab.onos.net;
/**
* Abstraction of a link between an end-station host and the network
* infrastructure.
*/
public interface EdgeLink extends Link {
/**
* Returns the host identification.
*
* @return host identifier
*/
HostId hostId();
/**
* Returns the connection point where the host attaches to the
* network infrastructure.
*
* @return host location point
*/
HostLocation hostLocation();
}