blob: b9621b7c7f1b9916a6f673e03266f04553e3202f [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2014-present Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian O'Connorabafb502014-12-02 22:26:20 -080016package org.onosproject.net;
tome33cc1a2014-08-25 21:59:41 -070017
Pavlin Radoslavov33f228a2014-10-27 19:33:16 -070018import org.onlab.packet.IpAddress;
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070019import org.onlab.packet.MacAddress;
20import org.onlab.packet.VlanId;
tom7869ad92014-09-09 14:32:08 -070021
22import java.util.Set;
23
tome33cc1a2014-08-25 21:59:41 -070024/**
25 * Abstraction of an end-station host on the network, essentially a NIC.
26 */
tomb36046e2014-08-27 00:22:24 -070027public interface Host extends Element {
tome33cc1a2014-08-25 21:59:41 -070028
tom7869ad92014-09-09 14:32:08 -070029 /**
30 * Host identification.
31 *
32 * @return host id
33 */
Ayaka Koshibe1c7b38e2014-09-11 13:09:51 -070034 @Override
tom7869ad92014-09-09 14:32:08 -070035 HostId id();
tome33cc1a2014-08-25 21:59:41 -070036
tom7869ad92014-09-09 14:32:08 -070037 /**
38 * Returns the host MAC address.
39 *
40 * @return mac address
41 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070042 MacAddress mac();
tom7869ad92014-09-09 14:32:08 -070043
44 /**
Ayaka Koshibe74a23922014-09-09 16:45:39 -070045 * Returns the VLAN ID tied to this host.
46 *
47 * @return VLAN ID value
48 */
Ayaka Koshibea9c199f2014-09-16 16:21:40 -070049 VlanId vlan();
Ayaka Koshibe74a23922014-09-09 16:45:39 -070050
51 /**
tom7869ad92014-09-09 14:32:08 -070052 * Returns set of IP addresses currently bound to the host MAC address.
53 *
54 * @return set of IP addresses; empty if no IP address is bound
55 */
Pavlin Radoslavov33f228a2014-10-27 19:33:16 -070056 Set<IpAddress> ipAddresses();
tomb36046e2014-08-27 00:22:24 -070057
58 /**
59 * Returns the most recent host location where the host attaches to the
60 * network edge.
61 *
62 * @return host location
63 */
64 HostLocation location();
65
tom7869ad92014-09-09 14:32:08 -070066 // TODO: explore capturing list of recent locations to aid in mobility
tome33cc1a2014-08-25 21:59:41 -070067
68}