ClientCertificateRequestType (API Reference)
Enum Class ClientCertificateRequestType
java.lang.Object
java.lang.Enum<ClientCertificateRequestType>
com.here.sdk.maploader.remote.connection.ClientCertificateRequestType
- All Implemented Interfaces:
Serializable,Comparable<ClientCertificateRequestType>,Constable
Controls the client certificate verification policy on the server.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDo not request a client certificate.Request and require a client certificate and verify it against the root CAs.Request a client certificate, but do not verify it. -
Method Summary
Modifier and TypeMethodDescriptionstatic ClientCertificateRequestTypeReturns the enum constant of this class with the specified name.static ClientCertificateRequestType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DONT_REQUEST_CLIENT_CERTIFICATE
Do not request a client certificate.
-
REQUEST_BUT_DONT_VERIFY
Request a client certificate, but do not verify it.
-
REQUEST_AND_REQUIRE_AND_VERIFY
Request and require a client certificate and verify it against the root CAs.
-
-
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
-