Enum Class LdapConnectionHandlerCfgDefn.SslClientAuthPolicy
java.lang.Object
java.lang.Enum<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy>
org.forgerock.opendj.server.config.meta.LdapConnectionHandlerCfgDefn.SslClientAuthPolicy
- All Implemented Interfaces:
Serializable
,Comparable<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy>
,java.lang.constant.Constable
- Enclosing class:
- LdapConnectionHandlerCfgDefn
public static enum LdapConnectionHandlerCfgDefn.SslClientAuthPolicy
extends Enum<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy>
Defines the set of permissible values for the "ssl-client-auth-policy" property.
Specifies the policy that the LDAP Connection Handler should use regarding client SSL certificates. Clients can use the SASL EXTERNAL mechanism only if the policy is set to "optional" or "required".
This is only applicable if clients are allowed to use SSL.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionClients must not provide their own certificates when performing SSL negotiation.Clients are requested to provide their own certificates when performing SSL negotiation.Clients are required to provide their own certificates when performing SSL negotiation and are refused access if they do not provide a certificate. -
Method Summary
-
Enum Constant Details
-
DISABLED
Clients must not provide their own certificates when performing SSL negotiation. -
OPTIONAL
Clients are requested to provide their own certificates when performing SSL negotiation. The connection is nevertheless accepted if the client does not provide a certificate. -
REQUIRED
Clients are required to provide their own certificates when performing SSL negotiation and are refused access if they do not provide a certificate.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
- Overrides:
toString
in classEnum<LdapConnectionHandlerCfgDefn.SslClientAuthPolicy>
-