Merge "Parents pom distribution"
[controller.git] / opendaylight / hosttracker / api / src / main / java / org / opendaylight / controller / hosttracker / hostAware / IHostFinder.java
index 5ea7fb0e49d2a7b7d87718df43c4ee52162334b3..abe75180cf676bdeab08d7fe0f5166d6bfa57c97 100644 (file)
@@ -1,4 +1,3 @@
-
 /*
  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
  *
 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);
 }