X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fhosttracker%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2FhostAware%2FIHostFinder.java;h=abe75180cf676bdeab08d7fe0f5166d6bfa57c97;hb=ff1b4a79cca00743a00c3b0b1100bd0ab2b2fb31;hp=533e7599bddfb01f386ad71f78329da024157d81;hpb=39e1d43dc8f41f682fb818469a3aeb542e76ea8e;p=controller.git diff --git a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/IHostFinder.java b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/IHostFinder.java index 533e7599bd..abe75180cf 100644 --- a/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/IHostFinder.java +++ b/opendaylight/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/hostAware/IHostFinder.java @@ -1,4 +1,3 @@ - /* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * @@ -10,32 +9,32 @@ package org.opendaylight.controller.hosttracker.hostAware; import java.net.InetAddress; -import org.opendaylight.controller.hosttracker.hostAware.HostNodeConnector; - /** - * This Interface defines the methods to trigger the discovery of - * a Host and to probe if a learned Host is still in the network. + * This Interface defines the methods to trigger the discovery of a Host and to + * probe if a learned Host is still in the network. * * * */ public interface IHostFinder { /** - * This method initiates the discovery of a host based on its IP address. This is triggered - * by query of an application to the HostTracker. The requested IP address - * doesn't exist in the local database at this point. + * This method initiates the discovery of a host based on its IP address. + * This is triggered by query of an application to the HostTracker. The + * requested IP address doesn't exist in the local database at this point. * - * @param networkAddress IP Address encapsulated in InetAddress class + * @param networkAddress + * IP Address encapsulated in InetAddress class * */ public void find(InetAddress networkAddress); /** - * This method is called by HostTracker to see if a learned Host is still in the network. - * Used mostly for ARP Aging. + * This method is called by HostTracker to see if a learned Host is still in + * the network. Used mostly for ARP Aging. * - * @param host The Host that needs to be probed + * @param host + * The Host that needs to be probed */ public void probe(HostNodeConnector host); }