Uses of Interface
org.opennms.protocols.snmp.SnmpHandler

Packages that use SnmpHandler
org.opennms.bb.dp.capsd.snmp   
org.opennms.protocols.snmp   
org.opennms.test   
 

Uses of SnmpHandler in org.opennms.bb.dp.capsd.snmp
 

Classes in org.opennms.bb.dp.capsd.snmp that implement SnmpHandler
 class IfTable
          The IfTable uses a SnmpSession to collect the entries in the remote agent's interface table.
 class IpAddrTable
          IpAddrTable uses a SnmpSession to collect the ipAddrTable entries It implements the SnmpHandler to receive notifications when a reply is received/error occurs in the SnmpSession used to send requests /recieve replies.
 class IpNetToMediaTable
          The IpNetToMediaTable uses a SnmpSession to collect the entries in the remote agent's ipNetToMedia table.
 class IpRouteTable
          The IpRouteTable uses an SnmpSesion to collect the entries that are contained in an agents MIB-II routing table.
 class SystemGroup
          SystemGroup holds the system group properties It implements the SnmpHandler to receive notifications when a reply is received/error occurs in the SnmpSession used to send requests /recieve replies.
 

Uses of SnmpHandler in org.opennms.protocols.snmp
 

Fields in org.opennms.protocols.snmp declared as SnmpHandler
(package private)  SnmpHandler SnmpRequest.m_handler
          The SnmpHandler to invoke for this request
private  SnmpHandler SnmpSession.m_defHandler
          The default SNMP callback handler.
 

Methods in org.opennms.protocols.snmp that return SnmpHandler
 SnmpHandler SnmpSession.getDefaultHandler()
          Gets the default SnmpHandler for the session.
 

Methods in org.opennms.protocols.snmp with parameters of type SnmpHandler
 void SnmpSession.setDefaultHandler(SnmpHandler hdl)
          Sets the default SnmpHandler.
 int SnmpSession.send(SnmpPduPacket pdu, SnmpHandler handler)
          Send the SNMP PDU to the remote agent and invokes the specified handler when the packet is recieve.
 int SnmpSession.send(SnmpPduTrap pdu, SnmpHandler handler)
          Send the SNMP PDU Trap to the remote agent.
 

Constructors in org.opennms.protocols.snmp with parameters of type SnmpHandler
SnmpRequest(SnmpSession session, SnmpPduPacket pdu, SnmpHandler handler)
          Used to create an SnmpRequest object.
SnmpRequest(SnmpSession session, SnmpPduTrap pdu, SnmpHandler handler)
          Used to create an SnmpRequest object.
 

Uses of SnmpHandler in org.opennms.test
 

Classes in org.opennms.test that implement SnmpHandler
 class snmpwalk
          This class is designed to provide an example of how to use the JoeSNMP libraries from OpenNMS.