X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fadsal%2Fhosttracker%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2FIfHostListener.java;fp=opendaylight%2Fadsal%2Fhosttracker%2Fapi%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fhosttracker%2FIfHostListener.java;h=0000000000000000000000000000000000000000;hp=51d68d87b43ab2ca19769bbd31455c141a4736fe;hb=50f88249a65c52ba56a48852b71ce432fed2bbeb;hpb=abfa9a03550cbe9fccc4420684dced175dd6d119 diff --git a/opendaylight/adsal/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java b/opendaylight/adsal/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java deleted file mode 100644 index 51d68d87b4..0000000000 --- a/opendaylight/adsal/hosttracker/api/src/main/java/org/opendaylight/controller/hosttracker/IfHostListener.java +++ /dev/null @@ -1,31 +0,0 @@ -/* - * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. - * - * This program and the accompanying materials are made available under the - * terms of the Eclipse Public License v1.0 which accompanies this distribution, - * and is available at http://www.eclipse.org/legal/epl-v10.html - */ - -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. - * - */ - -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. - * - * @param host - * Host info encapsulated in HostNodeConnector class - */ - public void hostListener(HostNodeConnector host); -}