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