X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fhosttracker%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2FIfNewHostNotify.java;h=ef900e475ecc68b580e1a6946ef09470f36054fd;hb=c7551f594c34504fffa0055d3360132577938b38;hp=88db0811d7c56e40fe565ec407e1772907434028;hpb=e2f7aaa41e482815ca1d4495eb85c8653cd903ab;p=controller.git 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 88db0811d7..ef900e475e 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 @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -12,25 +11,27 @@ package org.opendaylight.controller.hosttracker; 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 - * existing host is removed from the network. + * This Interface defines the methods for client applications of Host Tracker to + * get notifications when a new host is learned or existing host is removed from + * the network. * */ 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); /** - * Notifies the HostTracker Clients that a Host which was learned in - * the past has been removed either due to switch/port down event or - * due to ARP Aging + * Notifies the HostTracker Clients that a Host which was learned in 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); }