X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fhosttracker%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2FIfNewHostNotify.java;h=88db0811d7c56e40fe565ec407e1772907434028;hp=561f78f5f5f17e5c26f6fdc0085906d6aaf695ed;hb=refs%2Fchanges%2F49%2F449%2F1;hpb=541d0a36997f292bb037a2199463431eee538358 diff --git a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfNewHostNotify.java b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfNewHostNotify.java index 561f78f5f5..88db0811d7 100644 --- a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfNewHostNotify.java +++ b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfNewHostNotify.java @@ -13,7 +13,7 @@ import org.opendaylight.controller.hosttracker.hostAware.HostNodeConnector; /** * This Interface defines the methods for client applications of - * Host Tracker to get notifications when a new host is learned or + * Host Tracker to get notifications when a new host is learned or * existing host is removed from the network. * */ @@ -21,7 +21,7 @@ public interface IfNewHostNotify { /** * Notifies the HostTracker Clients that a new Host has been learned * - * @param host Host Info encapsulated in HostNodeConnector class + * @param host Host Info encapsulated in HostNodeConnector class */ public void notifyHTClient(HostNodeConnector host); @@ -30,7 +30,7 @@ public interface IfNewHostNotify { * the past has been removed either due to switch/port down event or * due to ARP Aging * - * @param host Host Info encapsulated in HostNodeConnector class + * @param host Host Info encapsulated in HostNodeConnector class */ public void notifyHTClientHostRemoved(HostNodeConnector host); }