blob: f8e2e313abadb463db454e670f8ed0c92fb785d5 [file] [log] [blame]
tome33cc1a2014-08-25 21:59:41 -07001package org.onlab.onos.net;
2
tom64b7aac2014-08-26 00:18:21 -07003import org.onlab.onos.net.provider.Provided;
4
tome33cc1a2014-08-25 21:59:41 -07005/**
6 * Abstraction of an end-station host on the network, essentially a NIC.
7 */
tom64b7aac2014-08-26 00:18:21 -07008public interface Host extends Provided {
tome33cc1a2014-08-25 21:59:41 -07009
10 // MAC, IP(s), optional VLAN ID
11
12 // Location (current, recent locations?
13
14}