public static enum HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy extends Enum<HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy>
Specifies the policy that the HTTP 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.
Enum Constant and Description |
---|
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.
|
REQUIRED
Clients are required to provide their own certificates when
performing SSL negotiation and are refused access if they do not
provide a certificate.
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy DISABLED
public static final HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy OPTIONAL
public static final HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy REQUIRED
public static HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy[] values()
for (HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy c : HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy.values()) System.out.println(c);
public static HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy 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<HTTPConnectionHandlerCfgDefn.SSLClientAuthPolicy>
Copyright © 2010-2016 ForgeRock AS. All Rights Reserved.