Class SnmpUsmDhObjectsMib.DHKeyChange

java.lang.Object
org.snmp4j.agent.mo.snmp.dh.SnmpUsmDhObjectsMib.DHKeyChange
All Implemented Interfaces:
TextualConvention<org.snmp4j.smi.OctetString>
Enclosing class:
SnmpUsmDhObjectsMib

public class SnmpUsmDhObjectsMib.DHKeyChange extends Object implements TextualConvention<org.snmp4j.smi.OctetString>
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    MOColumn<org.snmp4j.smi.OctetString>
    createColumn(int columnID, int syntax, MOAccess access, org.snmp4j.smi.OctetString defaultValue, boolean mutableInService)
    Creates a MOColumn instance of this TC specified by the column ID, access, default value, and mutable flag.
    org.snmp4j.smi.OctetString
    Creates an initial value for an object instance of this textual convention.
    MOScalar<org.snmp4j.smi.OctetString>
    createScalar(org.snmp4j.smi.OID oid, MOAccess access, org.snmp4j.smi.OctetString value)
    Creates a MOScalar instance of this TC specified by OID, access, and optional value.
    Returns the MIB module name that defined this textual convention.
    Returns the name of the textual convention as defined in the MIB module.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DHKeyChange

      public DHKeyChange()
  • Method Details

    • getModuleName

      public String getModuleName()
      Description copied from interface: TextualConvention
      Returns the MIB module name that defined this textual convention.
      Specified by:
      getModuleName in interface TextualConvention<org.snmp4j.smi.OctetString>
      Returns:
      an unique module name
    • getName

      public String getName()
      Description copied from interface: TextualConvention
      Returns the name of the textual convention as defined in the MIB module.
      Specified by:
      getName in interface TextualConvention<org.snmp4j.smi.OctetString>
      Returns:
      the unique name (within the MIB module) of the TC.
    • createInitialValue

      public org.snmp4j.smi.OctetString createInitialValue()
      Description copied from interface: TextualConvention
      Creates an initial value for an object instance of this textual convention.
      Specified by:
      createInitialValue in interface TextualConvention<org.snmp4j.smi.OctetString>
      Returns:
      a Variable instance with a valid value (according to this TC).
    • createScalar

      public MOScalar<org.snmp4j.smi.OctetString> createScalar(org.snmp4j.smi.OID oid, MOAccess access, org.snmp4j.smi.OctetString value)
      Description copied from interface: TextualConvention
      Creates a MOScalar instance of this TC specified by OID, access, and optional value.
      Specified by:
      createScalar in interface TextualConvention<org.snmp4j.smi.OctetString>
      Parameters:
      oid - the OID of the scalar isntance.
      access - the access definition.
      value - the Variable instance containing the value of the scalar. If value is null, the TC should create an initial value with TextualConvention.createInitialValue().
      Returns:
      a MOScalar instance.
    • createColumn

      public MOColumn<org.snmp4j.smi.OctetString> createColumn(int columnID, int syntax, MOAccess access, org.snmp4j.smi.OctetString defaultValue, boolean mutableInService)
      Description copied from interface: TextualConvention
      Creates a MOColumn instance of this TC specified by the column ID, access, default value, and mutable flag.
      Specified by:
      createColumn in interface TextualConvention<org.snmp4j.smi.OctetString>
      Parameters:
      columnID - the column id as defined in the MIB module (typically starting at one).
      syntax - the SMI syntax supported by the column.
      access - the access definition.
      defaultValue - the default value or null if there is no DEFVAL clause for this column.
      mutableInService - true if this column may be modified while row is in service.
      Returns:
      the MOColumn created.