blob: 98fcf0ca155b3b2d932c2a9f51beae77f6dce0d4 [file] [log] [blame]
package net.onrc.onos.ofcontroller.proxyarp;
/**
* Listener interface for ARP reply event callbacks.
*/
public interface IArpReplyEventHandler {
/**
* An ARP reply has been received.
* @param arpReply data about the received ARP reply
*/
public void arpReplyEvent(ArpReplyNotification arpReply);
}