Uses of Class
org.opennms.protocols.snmp.SnmpSession

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

Uses of SnmpSession in org.opennms.bb.dp.capsd.components
 

Fields in org.opennms.bb.dp.capsd.components declared as SnmpSession
private  SnmpSession CapsReader.m_session
          The SNMP session used to communicate with the remote interface.
 

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

Methods in org.opennms.bb.dp.capsd.snmp with parameters of type SnmpSession
 void IpAddrTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IpAddrTable.snmpInternalError(SnmpSession session, int error, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and called when an internal error happens in a session.
 void IpAddrTable.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and is invoked when the SnmpSession does not receive a reply after exhausting the retransmission attempts.
 void IpNetToMediaTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IpNetToMediaTable.snmpInternalError(SnmpSession session, int error, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and called when an internal error happens in a session.
 void IpNetToMediaTable.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and is invoked when the SnmpSession does not receive a reply after exhausting the retransmission attempts.
 void SystemGroup.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void SystemGroup.snmpInternalError(SnmpSession session, int error, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and called when an internal error happens in a session.
 void SystemGroup.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and is invoked when the SnmpSession does not receive a reply after exhausting the retransmission attempts.
 void IfTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IfTable.snmpInternalError(SnmpSession session, int error, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and called when an internal error happens in a session.
 void IfTable.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and is invoked when the SnmpSession does not receive a reply after exhausting the retransmission attempts.
 void IpRouteTable.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is used to process received SNMP PDU packets from the remote agent.
 void IpRouteTable.snmpInternalError(SnmpSession session, int error, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and called when an internal error happens in a session.
 void IpRouteTable.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is part of the SnmpHandler interface and is invoked when the SnmpSession does not receive a reply after exhausting the retransmission attempts.
 

Constructors in org.opennms.bb.dp.capsd.snmp with parameters of type SnmpSession
IpAddrTable(SnmpSession session, Signaler signaler)
          Constructs an IpAddrTable object that is used to collect the address elements from the remote agent.
IpNetToMediaTable(SnmpSession session, Signaler signaler)
          Constructs an IpNetToMediaTable object that is used to collect the NetToMedia elements from the remote agent.
SystemGroup(SnmpSession session, Signaler signaler)
          The class constructor is used to initialize the collector and send out the initial SNMP packet requesting data.
IfTable(SnmpSession session, Signaler signaler)
          Constructs an IfTable object that is used to collect the interface elements from the remote agent.
IpRouteTable(SnmpSession session, Signaler signaler)
          Constructs an IpRouteTable object that is used to collect the routing elements from the remote agent.
 

Uses of SnmpSession in org.opennms.protocols.snmp
 

Fields in org.opennms.protocols.snmp declared as SnmpSession
(package private)  SnmpSession SnmpRequest.m_session
          The session that created this request
 

Methods in org.opennms.protocols.snmp with parameters of type SnmpSession
 void SnmpHandler.snmpReceivedPdu(SnmpSession session, int command, SnmpPduPacket pdu)
          This method is invoked when a pdu is successfully returned from the peer agent.
 void SnmpHandler.snmpInternalError(SnmpSession session, int err, SnmpSyntax pdu)
          This method is invoked when an internal error occurs for the session.
 void SnmpHandler.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is invoked when an agent fails to respond in the required time.
 

Constructors in org.opennms.protocols.snmp with parameters of type SnmpSession
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.
SnmpSession.SessionHandler()
           
SnmpSession.CleanupRequest()
           
 

Uses of SnmpSession in org.opennms.test
 

Methods in org.opennms.test with parameters of type SnmpSession
 void snmpwalk.snmpInternalError(SnmpSession session, int err, SnmpSyntax pdu)
          Defined by the SnmpHandler interface.
 void snmpwalk.snmpTimeoutError(SnmpSession session, SnmpSyntax pdu)
          This method is define by the SnmpHandler interface and invoked if an agent fails to respond.
 void snmpwalk.snmpReceivedPdu(SnmpSession session, int cmd, SnmpPduPacket pdu)
          This method is defined by the SnmpHandler interface and invoked when the agent responds to the management application.