Uses of Interface
org.opennms.bb.dp.poller.plugins.NetworkInterface

Packages that use NetworkInterface
org.opennms.bb.dp.poller.plugins   
 

Uses of NetworkInterface in org.opennms.bb.dp.poller.plugins
 

Classes in org.opennms.bb.dp.poller.plugins that implement NetworkInterface
 class NetworkInterfaceIPv4
          This class implements the NetworkInterface interface for IPv4 addresses.
 class PollerTask
          This class provides the main class construct that will be used to schedule interfaces for polling.
 

Fields in org.opennms.bb.dp.poller.plugins declared as NetworkInterface
(package private)  NetworkInterface ServiceMonitorTester.ICMPRequestGenerator.m_iface
           
 

Methods in org.opennms.bb.dp.poller.plugins with parameters of type NetworkInterface
 void ServiceMonitorHTTP.initialize(NetworkInterface iface)
          Called by the poller framework when an interface is being added to the scheduler.
 void ServiceMonitorHTTP.release(NetworkInterface iface)
          Called by the poller framework when an interface is being removed from the scheduler.
 int ServiceMonitorHTTP.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          Poll the specified address for HTTP service availability
 void ServiceMonitorDNS.initialize(NetworkInterface iface)
          Called by the poller framework when an interface is being added to the scheduler.
 void ServiceMonitorDNS.release(NetworkInterface iface)
          Called by the poller framework when an interface is being removed from the scheduler.
 int ServiceMonitorDNS.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          Poll the specified address for DNS service availability.
 void ServiceMonitorSMTP.initialize(NetworkInterface iface)
          Called by the poller framework when an interface is being added to the scheduler.
 void ServiceMonitorSMTP.release(NetworkInterface iface)
          Called by the poller framework when an interface is being removed from the scheduler.
 int ServiceMonitorSMTP.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          Poll the specified address for SMTP service availability.
 void ServiceMonitorFTP.initialize(NetworkInterface iface)
          Called by the poller framework when an interface is being added to the scheduler.
 void ServiceMonitorFTP.release(NetworkInterface iface)
          Called by the poller framework when an interface is being removed from the scheduler.
 int ServiceMonitorFTP.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          Poll the specified address for FTP service availability
 void ServiceMonitor.initialize(NetworkInterface iface)
          This method is called whenever a new interface that supports the plug-in service is added to the scheduling system.
 void ServiceMonitor.release(NetworkInterface iface)
          This method is the called whenever an interface is being removed from the scheduler.
 int ServiceMonitor.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          This method is the heart of the plug-in monitor.
 void ServiceMonitorICMP.initialize(NetworkInterface iface)
          Called by the poller framework when an interface is being added to the scheduler.
 void ServiceMonitorICMP.release(NetworkInterface iface)
          Called by the poller framework when an interface is being removed from the scheduler.
 int ServiceMonitorICMP.poll(NetworkInterface iface, EventProxy eproxy, Properties parameters)
          Poll the specified address for ICMP service availability.
 

Constructors in org.opennms.bb.dp.poller.plugins with parameters of type NetworkInterface
ServiceMonitorTester.ICMPRequestGenerator(Properties propICMP, NetworkInterface iface)