blob: 3403486cb69af59562bc1a9ceccf5b2166003678 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
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.host;
tom0eb04ca2014-08-25 14:34:51 -070017
samanwita palc40e5ed2015-09-24 11:01:51 -070018import org.onlab.packet.IpAddress;
Brian O'Connorabafb502014-12-02 22:26:20 -080019import org.onosproject.net.HostId;
20import org.onosproject.net.provider.ProviderService;
tom0eb04ca2014-08-25 14:34:51 -070021
22/**
23 * Means of conveying host information to the core.
24 */
tomd7356722014-08-26 01:07:39 -070025public interface HostProviderService extends ProviderService<HostProvider> {
tom0eb04ca2014-08-25 14:34:51 -070026
tome33cc1a2014-08-25 21:59:41 -070027 /**
28 * Notifies the core when a host has been detected on a network along with
Kedar Gupta47bd4802015-07-15 09:43:26 -070029 * information that identifies the host location.
tome33cc1a2014-08-25 21:59:41 -070030 *
tom7869ad92014-09-09 14:32:08 -070031 * @param hostId id of the host that been detected
tome33cc1a2014-08-25 21:59:41 -070032 * @param hostDescription description of host and its location
Sho SHIMIZUbccb002b2015-09-24 15:22:18 -070033 * @deprecated in Drake release
tome33cc1a2014-08-25 21:59:41 -070034 */
Brian O'Connorf107bd72015-09-21 15:31:03 -070035 @Deprecated
36 default void hostDetected(HostId hostId, HostDescription hostDescription) {
37 hostDetected(hostId, hostDescription, false);
38 }
39
40 /**
41 * Notifies the core when a host has been detected on a network along with
42 * information that identifies the host location.
43 *
44 * @param hostId id of the host that been detected
45 * @param hostDescription description of host and its location
46 * @param replaceIps replace IP set if true, merge IP set otherwise
47 */
48 void hostDetected(HostId hostId, HostDescription hostDescription, boolean replaceIps);
tom0eb04ca2014-08-25 14:34:51 -070049
tome33cc1a2014-08-25 21:59:41 -070050 /**
51 * Notifies the core when a host is no longer detected on a network.
52 *
tom7869ad92014-09-09 14:32:08 -070053 * @param hostId id of the host that vanished
tome33cc1a2014-08-25 21:59:41 -070054 */
tom7869ad92014-09-09 14:32:08 -070055 void hostVanished(HostId hostId);
tome33cc1a2014-08-25 21:59:41 -070056
samanwita palc40e5ed2015-09-24 11:01:51 -070057 /**
Brian O'Connor52515622015-10-09 17:03:44 -070058 * Notifies the core when an IP is no longer associated with a host.
samanwita palc40e5ed2015-09-24 11:01:51 -070059 *
Brian O'Connor52515622015-10-09 17:03:44 -070060 * @param hostId id of the host
61 * @param ipAddress ip address of host that vanished
samanwita palc40e5ed2015-09-24 11:01:51 -070062 */
63 void removeIpFromHost(HostId hostId, IpAddress ipAddress);
64
tom0eb04ca2014-08-25 14:34:51 -070065}