Interface SelectClientCertificateCallback.Params
- Enclosing interface:
- SelectClientCertificateCallback
public static interface SelectClientCertificateCallback.Params
The parameters of the
SelectClientCertificateCallback.-
Method Summary
Modifier and TypeMethodDescriptiondefault StringReturns 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 HostPorthostPort()Returns the host and port of the server that requested the client authentication.default booleanisProxy()Returnstrueif the request that requires the client certificate selection is issued by an HTTPS proxy server.default Stringmessage()Returns a string that represents the localized dialog message.default StringReturns a string that represents the localized text of the "Select" action.default Stringtitle()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()Returnstrueif 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.
-