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%2FIfHostListener.java;h=51d68d87b43ab2ca19769bbd31455c141a4736fe;hp=d7c6fdbb3d7fead1d8d0d8c24ecee16ea907d493;hb=c12131df07f248f2e2192b200bf9b6149163d484;hpb=8398f3adb544427642694be13abe9c3bc1a4e192 diff --git a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java index d7c6fdbb3d..51d68d87b4 100644 --- a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java +++ b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -12,21 +11,21 @@ package org.opendaylight.controller.hosttracker; import org.opendaylight.controller.hosttracker.hostAware.HostNodeConnector; /** - * This interface defines the method to notify detected Host on the - * network. The information includes Host's IP address, MAC address, - * switch ID, port, and VLAN. + * This interface defines the method to notify detected Host on the network. The + * information includes Host's IP address, MAC address, switch ID, port, and + * VLAN. * */ public interface IfHostListener { /** - * Learns new Hosts. Called by ArpHandler and implemented in - * HostTracker.java. If a Host is learned for the first time then - * adds it to the local database and informs other applications - * of coming up a new Host. For the hosts which it has already - * learned, it refreshes them. + * Learns new Hosts. Called by ArpHandler and implemented in + * HostTracker.java. If a Host is learned for the first time then adds it to + * the local database and informs other applications of coming up a new + * Host. For the hosts which it has already learned, it refreshes them. * - * @param host Host info encapsulated in HostNodeConnector class + * @param host + * Host info encapsulated in HostNodeConnector class */ public void hostListener(HostNodeConnector host); }