Enum AuthenticationLevel
- java.lang.Object
-
- java.lang.Enum<AuthenticationLevel>
-
- org.apache.directory.api.ldap.model.constants.AuthenticationLevel
-
- All Implemented Interfaces:
Serializable,Comparable<AuthenticationLevel>
public enum AuthenticationLevel extends Enum<AuthenticationLevel>
An enumeration that represents the level of authentication. We have 4 different levels :- NONE : anonymous
- SIMPLE : Simple authentication
- STRONG : SASL or external authentication
- UNAUTHENT : A special case when just doing some auditing
- Author:
- Apache Directory Project
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONENo authentication (anonymous access)SIMPLESimple authentication (bound with plain-text credentials)STRONGStrong authentication (bound with encrypted credentials)UNAUTHENTUnauthentication, if the BIND contains a Dn but no credentials
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLevel()static AuthenticationLevelgetLevel(int val)Return the AuthenticationLevel associated with the given numeric level.StringgetName()StringtoString()static AuthenticationLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static AuthenticationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AuthenticationLevel NONE
No authentication (anonymous access)
-
SIMPLE
public static final AuthenticationLevel SIMPLE
Simple authentication (bound with plain-text credentials)
-
STRONG
public static final AuthenticationLevel STRONG
Strong authentication (bound with encrypted credentials)
-
UNAUTHENT
public static final AuthenticationLevel UNAUTHENT
Unauthentication, if the BIND contains a Dn but no credentials
-
-
Method Detail
-
values
public static AuthenticationLevel[] 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 (AuthenticationLevel c : AuthenticationLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuthenticationLevel 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 nameNullPointerException- if the argument is null
-
getLevel
public int getLevel()
- Returns:
- the integer value of this level (greater value, stronger level).
-
getName
public String getName()
- Returns:
- the name of this level.
-
toString
public String toString()
- Overrides:
toStringin classEnum<AuthenticationLevel>
-
getLevel
public static AuthenticationLevel getLevel(int val)
Return the AuthenticationLevel associated with the given numeric level. This is used by the serialization process.- Parameters:
val- The numeric level we are looking at- Returns:
- The associated AuthenticationLevel
-
-