blob: eabbeb1d5385d9a5ddc8ca8dd2bdcd826df468dd [file] [log] [blame]
tom43387f32014-08-27 14:42:43 -07001package org.onlab.onos.net;
2
3/**
4 * Abstraction of a link between an end-station host and the network
5 * infrastructure.
6 */
7public interface HostLinks extends Link {
8
9 /**
10 * Returns the host identification.
11 *
12 * @return host identifier
13 */
14 ElementId hostId();
15
16 /**
17 * Returns the connection point where the host attaches to the
18 * network infrastructure.
19 *
20 * @return host connection point
21 */
22 ConnectPoint connectPoint();
23
24}