com.sun.jaw.snmp.manager
Class SnmpConst

java.lang.Object
  |
  +--com.sun.jaw.snmp.manager.SnmpConst

public final class SnmpConst
extends java.lang.Object
implements java.io.Serializable

This class contains constants related to SNMP manager package. All members are static and can be used by any application.

See Also:
Serialized Form

Field Summary
static int DefaultOption
          By default the following options are set: optAllowMultiplexing; optFixPduOnError; optHandleTooBigError.
static int defaultSnmpRequestPktSize
          The default SNMP packet size of an SNMP response.
static int defaultSnmpResponsePktSize
          The default SNMP packet size of an SNMP response (8 * 1024).
static int MAX_VARBIND_LIMIT
          The maximum number of SnmpVarbindList that can be packed into a request.
static int optAllowMultiplexing
          This option can be set to control the behavior of a request.
static int optFixPduOnError
          This option can be set to control the behavior of a request.
static int optHandleTooBigError
          This option can be set to control the behavior of a request.
 
Constructor Summary
SnmpConst()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

defaultSnmpRequestPktSize

public static int defaultSnmpRequestPktSize
The default SNMP packet size of an SNMP response. The default value is (2 * 1024). The maximum size is initially set to Ethernet maximum transfer unit (MTU).

defaultSnmpResponsePktSize

public static int defaultSnmpResponsePktSize
The default SNMP packet size of an SNMP response (8 * 1024). The default value is (8 * 1024). This will be the default size that a SnmpSocket uses when receiving a packet.

MAX_VARBIND_LIMIT

public static int MAX_VARBIND_LIMIT
The maximum number of SnmpVarbindList that can be packed into a request. The default value is 25.

optAllowMultiplexing

public static final int optAllowMultiplexing
This option can be set to control the behavior of a request.

optFixPduOnError

public static final int optFixPduOnError
This option can be set to control the behavior of a request.

optHandleTooBigError

public static final int optHandleTooBigError
This option can be set to control the behavior of a request.

DefaultOption

public static final int DefaultOption
By default the following options are set:
Constructor Detail

SnmpConst

public SnmpConst()