Enum FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm
- java.lang.Object
-
- java.lang.Enum<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm>
-
- org.forgerock.opendj.server.config.meta.FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm>
- Enclosing class:
- FingerprintCertificateMapperCfgDefn
public static enum FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm extends Enum<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm>
Defines the set of permissable values for the "fingerprint-algorithm" property.Specifies the name of the digest algorithm to compute the fingerprint of client certificates.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm
valueOf​(String name)
Returns the enum constant of this type with the specified name.static FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MD5
public static final FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm MD5
Use the MD5 digest algorithm to compute certificate fingerprints.
-
SHA1
public static final FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm SHA1
Use the SHA-1 digest algorithm to compute certificate fingerprints.
-
SHA256
public static final FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm SHA256
Use the SHA-256 digest algorithm to compute certificate fingerprints.
-
-
Method Detail
-
values
public static FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm[] 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 (FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm c : FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm 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
-
toString
public String toString()
- Overrides:
toString
in classEnum<FingerprintCertificateMapperCfgDefn.FingerprintAlgorithm>
-
-