Module org.snmp4j

Enum Class SecurityLevel

java.lang.Object
java.lang.Enum<SecurityLevel>
org.snmp4j.security.SecurityLevel
All Implemented Interfaces:
Serializable, Comparable<SecurityLevel>, java.lang.constant.Constable

public enum SecurityLevel extends Enum<SecurityLevel>
The SecurityLevel interface contains enumerated values for the different security levels.
Version:
2.0
Author:
Frank Fock
  • Enum Constant Details

  • Field Details

    • NOAUTH_NOPRIV

      public static final int NOAUTH_NOPRIV
      No authentication and no encryption. Anyone can create and read messages with this security level
      See Also:
    • AUTH_NOPRIV

      public static final int AUTH_NOPRIV
      Authentication and no encryption. Only the one with the right authentication key can create messages with this security level, but anyone can read the contents of the message.
      See Also:
    • AUTH_PRIV

      public static final int AUTH_PRIV
      Authentication and encryption. Only the one with the right authentication key can create messages with this security level, and only the one with the right encryption/decryption key can read the contents of the message.
      See Also:
  • Method Details

    • values

      public static SecurityLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static SecurityLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • getSnmpValue

      public int getSnmpValue()
      Gets the SNMP value of this security level.
      Returns:
      1 for noAuthNoPriv 2 for authNoPriv 3 for authPriv
    • get

      public static SecurityLevel get(int snmpValue)