Enum Class ClientCertificateRequestType

java.lang.Object
java.lang.Enum<ClientCertificateRequestType>
com.here.sdk.maploader.remote.connection.ClientCertificateRequestType
All Implemented Interfaces:
Serializable, Comparable<ClientCertificateRequestType>, Constable

public enum ClientCertificateRequestType extends Enum<ClientCertificateRequestType>

Controls the client certificate verification policy on the server.

  • Enum Constant Details

    • DONT_REQUEST_CLIENT_CERTIFICATE

      public static final ClientCertificateRequestType DONT_REQUEST_CLIENT_CERTIFICATE

      Do not request a client certificate.

    • REQUEST_BUT_DONT_VERIFY

      public static final ClientCertificateRequestType REQUEST_BUT_DONT_VERIFY

      Request a client certificate, but do not verify it.

    • REQUEST_AND_REQUIRE_AND_VERIFY

      public static final ClientCertificateRequestType REQUEST_AND_REQUIRE_AND_VERIFY

      Request and require a client certificate and verify it against the root CAs.

  • Method Details

    • values

      public static ClientCertificateRequestType[] 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

      public static ClientCertificateRequestType valueOf(String name)
      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 name
      NullPointerException - if the argument is null