public static enum SNMPConnectionHandlerCfgDefn.SecurityLevel extends Enum<SNMPConnectionHandlerCfgDefn.SecurityLevel>
Specifies the type of security level : NoAuthNoPriv : No security mechanisms activated, AuthNoPriv : Authentication activated with no privacy, AuthPriv : Authentication with privacy activated. This property is required for SNMP V3 security configuration.
Enum Constant and Description |
---|
AUTHNOPRIV
Authentication activated with no privacy.
|
AUTHPRIV
Authentication with privacy activated.
|
NOAUTHNOPRIV
No security mechanisms activated.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static SNMPConnectionHandlerCfgDefn.SecurityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SNMPConnectionHandlerCfgDefn.SecurityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SNMPConnectionHandlerCfgDefn.SecurityLevel AUTHNOPRIV
public static final SNMPConnectionHandlerCfgDefn.SecurityLevel AUTHPRIV
public static final SNMPConnectionHandlerCfgDefn.SecurityLevel NOAUTHNOPRIV
public static SNMPConnectionHandlerCfgDefn.SecurityLevel[] values()
for (SNMPConnectionHandlerCfgDefn.SecurityLevel c : SNMPConnectionHandlerCfgDefn.SecurityLevel.values()) System.out.println(c);
public static SNMPConnectionHandlerCfgDefn.SecurityLevel valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<SNMPConnectionHandlerCfgDefn.SecurityLevel>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.