Interface SelectClientCertificateCallback.Params

Enclosing interface:
SelectClientCertificateCallback

public static interface SelectClientCertificateCallback.Params
The parameters of the SelectClientCertificateCallback.
  • Method Summary

    Modifier and Type
    Method
    Description
    default String
    Returns a string that represents the localized text of the "Cancel" action.
    default List<Certificate>
    Returns an immutable list of the certificates allowed by the server.
    default HostPort
    Returns the host and port of the server that requested the client authentication.
    default boolean
    Returns true if the request that requires the client certificate selection is issued by an HTTPS proxy server.
    default String
    Returns a string that represents the localized dialog message.
    default String
    Returns a string that represents the localized text of the "Select" action.
    default String
    Returns a string that represents the localized dialog title.
  • Method Details

    • title

      default String title()
      Returns a string that represents the localized dialog title.
    • message

      default String message()
      Returns a string that represents the localized dialog message.
    • selectActionText

      default String selectActionText()
      Returns a string that represents the localized text of the "Select" action.
    • cancelActionText

      default String cancelActionText()
      Returns a string that represents the localized text of the "Cancel" action.
    • isProxy

      default boolean isProxy()
      Returns true if the request that requires the client certificate selection is issued by an HTTPS proxy server.
    • hostPort

      default HostPort hostPort()
      Returns the host and port of the server that requested the client authentication.
    • certificates

      default List<Certificate> certificates()
      Returns an immutable list of the certificates allowed by the server. The list is empty when there are no matching certificates installed in the system. In this case you can either cancel the SSL client authentication, or provide a custom ClientCertificate.