Class SelectClientCertificateCallback.Action
java.lang.Object
com.teamdev.jxbrowser.callback.AsyncCallbackAction<com.teamdev.jxbrowser.net.internal.rpc.SelectClientCertificate.Response>
com.teamdev.jxbrowser.browser.callback.SelectClientCertificateCallback.Action
- Enclosing interface:
- SelectClientCertificateCallback
public static final class SelectClientCertificateCallback.Action
extends AsyncCallbackAction<com.teamdev.jxbrowser.net.internal.rpc.SelectClientCertificate.Response>
An action providing a response to the
SelectClientCertificateCallback
.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
cancel()
Notifies the browser that the SSL authorization should be cancelled.void
select
(int index) Notifies the browser that the client certificate from the list with the given index should be selected.void
select
(ClientCertificate clientCertificate) Notifies the browser that the givenclientCertificate
should be selected.Methods inherited from class com.teamdev.jxbrowser.callback.AsyncCallbackAction
isClosed
-
Constructor Details
-
Action
public Action(Consumer<com.teamdev.jxbrowser.net.internal.rpc.SelectClientCertificate.Response> consumer)
-
-
Method Details
-
select
public void select(int index) Notifies the browser that the client certificate from the list with the given index should be selected. -
select
Notifies the browser that the givenclientCertificate
should be selected. -
cancel
public void cancel()Notifies the browser that the SSL authorization should be cancelled.
-