Module org.snmp4j

Enum SecurityLevel

    • Field Detail

      • 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:
        Constant Field Values
      • 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:
        Constant Field Values
      • 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:
        Constant Field Values
    • Method Detail

      • values

        public static SecurityLevel[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SecurityLevel c : SecurityLevel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SecurityLevel valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type 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