Uses of Class
snmp.SNMPSequence

Packages that use SNMPSequence
Default Package   
snmp The snmp package defines classes used to communicate with SNMP devices. 
 

Uses of SNMPSequence in
 

Methods in Default Package that return SNMPSequence
 SNMPSequence SNMPAgentTest.processRequest(SNMPPDU pdu, java.lang.String communityName)
           
 SNMPSequence SNMPAgentTest.processGetNextRequest(SNMPPDU pdu, java.lang.String communityName)
           
 

Uses of SNMPSequence in snmp
 

Subclasses of SNMPSequence in snmp
 class SNMPMessage
          Defines the SNMPMessage class as a special case of SNMPSequence.
 class SNMPPDU
          The SNMPPDU class represents an SNMP PDU from RFC 1157, as indicated below.
 class SNMPv1TrapPDU
          The SNMPTrapPDU class represents an SNMPv1 Trap PDU from RFC 1157, as indicated below.
 class SNMPv2BulkRequestPDU
          The SNMPv2BulkRequestPDU class represents an SNMPv2 Bulk Request PDU from RFC 1905, as indicated below.
 class SNMPv2InformRequestPDU
          The SNMPv2InformRequestPDU class represents an SNMPv2 Trap PDU from RFC 1448, as indicated below.
 class SNMPv2TrapPDU
          The SNMPv2TrapPDU class represents an SNMPv2 Trap PDU from RFC 1448, as indicated below.
 class SNMPVarBindList
          The SNMPVarBindList class is a specialization of SNMPSequence that contains a list of SNMPVariablePair objects.
 class SNMPVariablePair
          The SNMPVariablePair class implements the VarBind specification detailed below from RFC 1157.
 

Methods in snmp that return SNMPSequence
 SNMPSequence SNMPv2BulkRequestPDU.getVarBindList()
          A utility method that extracts the variable binding list from the pdu.
 SNMPSequence SNMPPDU.getVarBindList()
          A utility method that extracts the variable binding list from the pdu.
 SNMPSequence SNMPRequestListener.processRequest(SNMPPDU requestPDU, java.lang.String communityName)
          Handles Get- or Set- request messages.
 SNMPSequence SNMPRequestListener.processGetNextRequest(SNMPPDU requestPDU, java.lang.String communityName)
          Handles Get-Next- request messages.
 SNMPSequence SNMPv1TrapPDU.getVarBindList()
          A utility method that extracts the variable binding list from the pdu.
 

Constructors in snmp with parameters of type SNMPSequence
SNMPv2BulkRequestPDU(int requestID, int nonRepeaters, int maxRepetitions, SNMPSequence varList)
          Create a new PDU of the specified type, with given request ID, non-repeaters, and max-repetitions fields, and containing the supplied SNMP sequence as data.
SNMPPDU(byte pduType, int requestID, int errorStatus, int errorIndex, SNMPSequence varList)
          Create a new PDU of the specified type, with given request ID, error status, and error index, and containing the supplied SNMP sequence as data.
SNMPv1TrapPDU(SNMPObjectIdentifier enterpriseOID, SNMPIPAddress agentAddress, int genericTrap, int specificTrap, SNMPTimeTicks timestamp, SNMPSequence varList)
          Create a new Trap PDU of the specified type, with given request ID, error status, and error index, and containing the supplied SNMP sequence as data.
SNMPv2InformRequestPDU(SNMPTimeTicks sysUptime, SNMPObjectIdentifier snmpTrapOID, SNMPSequence varList)
          Create a new Inform Request PDU with given trapOID and sysUptime, and containing the supplied SNMP sequence as data.
SNMPv2TrapPDU(SNMPTimeTicks sysUptime, SNMPObjectIdentifier snmpTrapOID, SNMPSequence varList)
          Create a new Trap PDU with given trapOID and sysUptime, and containing the supplied SNMP sequence as data.