Interface SelectClientCertificateCallback.Params
- Enclosing interface:
- SelectClientCertificateCallback
public static interface SelectClientCertificateCallback.Params
The parameters of the
SelectClientCertificateCallback
.-
Method Summary
Modifier and TypeMethodDescriptiondefault 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
hostPort()
Returns the host and port of the server that requested the client authentication.default boolean
isProxy()
Returnstrue
if the request that requires the client certificate selection is issued by an HTTPS proxy server.default String
message()
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
title()
Returns a string that represents the localized dialog title.
-
Method Details
-
title
Returns a string that represents the localized dialog title. -
message
Returns a string that represents the localized dialog message. -
selectActionText
Returns a string that represents the localized text of the "Select" action. -
cancelActionText
Returns a string that represents the localized text of the "Cancel" action. -
isProxy
default boolean isProxy()Returnstrue
if the request that requires the client certificate selection is issued by an HTTPS proxy server. -
hostPort
Returns the host and port of the server that requested the client authentication. -
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 customClientCertificate
.
-