Enum PasswordHashAlgorithmType
- java.lang.Object
-
- java.lang.Enum<PasswordHashAlgorithmType>
-
- io.apiman.gateway.engine.policies.config.basicauth.PasswordHashAlgorithmType
-
- All Implemented Interfaces:
Serializable,Comparable<PasswordHashAlgorithmType>
public enum PasswordHashAlgorithmType extends Enum<PasswordHashAlgorithmType>
The supported hash algorithms when authenticating against information found in a database.- Author:
- eric.wittmann@redhat.com
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PasswordHashAlgorithmTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PasswordHashAlgorithmType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final PasswordHashAlgorithmType None
-
SHA1
public static final PasswordHashAlgorithmType SHA1
-
MD5
public static final PasswordHashAlgorithmType MD5
-
SHA256
public static final PasswordHashAlgorithmType SHA256
-
SHA384
public static final PasswordHashAlgorithmType SHA384
-
SHA512
public static final PasswordHashAlgorithmType SHA512
-
-
Method Detail
-
values
public static PasswordHashAlgorithmType[] 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 (PasswordHashAlgorithmType c : PasswordHashAlgorithmType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PasswordHashAlgorithmType 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
-
-