com.sun.jaw.snmp.common
Class SnmpPduBulk

java.lang.Object
  |
  +--com.sun.jaw.snmp.common.SnmpPduPacket
        |
        +--com.sun.jaw.snmp.common.SnmpPduBulk

public class SnmpPduBulk
extends SnmpPduPacket

The SnmpPduBulk represents an get-bulk PDU as defined in RFC 1448.

You normally don't need to use this class except if you decide to implement your own SnmpPduFactoryIf object.

The SnmpPduBulk extends SnmpPduPacket and defines attributes specific to the get-bulk PDU (see RFC 1448).

See Also:
Serialized Form

Field Summary
 int maxRepetitions
          The max-repetitions value.
 int nonRepeaters
          The non-repeaters value.
 
Fields inherited from class com.sun.jaw.snmp.common.SnmpPduPacket
address, community, port, requestId, type, varBindList, version
 
Constructor Summary
SnmpPduBulk()
          Builds a new get-bulk pdu.
 
Methods inherited from class com.sun.jaw.snmp.common.SnmpPduPacket
pduTypeToString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

nonRepeaters

public int nonRepeaters
The non-repeaters value.

maxRepetitions

public int maxRepetitions
The max-repetitions value.
Constructor Detail

SnmpPduBulk

public SnmpPduBulk()
Builds a new get-bulk pdu. type and version fields are initialized with pduGetBulkRequestPdu and snmpVersionTwo.