Uses of Class
io.vertx.core.net.ClientSSLOptions
Packages that use ClientSSLOptions
Package
Description
-
Uses of ClientSSLOptions in io.vertx.core
Methods in io.vertx.core with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptiondefault HttpClientAgentVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions) Create a HTTP/HTTPS client using the specified client and ssl optionsdefault HttpClientAgentVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client, ssl options and pool optionsVertx.createNetClient(TcpClientConfig config, ClientSSLOptions sslOptions) Create a TCP/SSL client using the specified config and the specified ssl optionsdefault QuicClientVertx.createQuicClient(ClientSSLOptions defaultSslOptions) LikeVertx.createQuicClient(QuicClientConfig, ClientSSLOptions), with the default client configuration.default QuicClientVertx.createQuicClient(QuicClientConfig config, ClientSSLOptions sslOptions) Create a configured Quic client. -
Uses of ClientSSLOptions in io.vertx.core.http
Methods in io.vertx.core.http that return ClientSSLOptionsModifier and TypeMethodDescriptionprotected ClientSSLOptionsHttpClientOptions.createSSLOptions()HttpConnectOptions.getSslOptions()Methods in io.vertx.core.http with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionHttpConnectOptions.setSslOptions(ClientSSLOptions sslOptions) Set the SSL options to use.RequestOptions.setSslOptions(ClientSSLOptions sslOptions) WebSocketConnectOptions.setSslOptions(ClientSSLOptions sslOptions) HttpClientAgent.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientBuilder.with(ClientSSLOptions options) Configure the client with the given SSLoptions. -
Uses of ClientSSLOptions in io.vertx.core.net
Methods in io.vertx.core.net that return ClientSSLOptionsModifier and TypeMethodDescriptionClientSSLOptions.addCrlPath(String crlPath) ClientSSLOptions.addCrlValue(Buffer crlValue) ClientSSLOptions.addEnabledCipherSuite(String suite) ClientSSLOptions.addEnabledSecureTransportProtocol(String protocol) ClientSSLOptions.copy()protected ClientSSLOptionsClientOptionsBase.createSSLOptions()protected ClientSSLOptionsClientOptionsBase.getOrCreateSSLOptions()ClientOptionsBase.getSslOptions()ConnectOptions.getSslOptions()QuicConnectOptions.getSslOptions()ClientSSLOptions.removeEnabledCipherSuite(String suite) ClientSSLOptions.removeEnabledSecureTransportProtocol(String protocol) ClientSSLOptions.setApplicationLayerProtocols(List<String> protocols) ClientSSLOptions.setEnabledSecureTransportProtocols(Set<String> enabledSecureTransportProtocols) ClientSSLOptions.setHostnameVerificationAlgorithm(String hostnameVerificationAlgorithm) Set the hostname verification algorithm intervalClientSSLOptions.setKeyCertOptions(KeyCertOptions options) ClientSSLOptions.setSslHandshakeTimeout(long sslHandshakeTimeout) ClientSSLOptions.setSslHandshakeTimeoutUnit(TimeUnit sslHandshakeTimeoutUnit) ClientSSLOptions.setTrustAll(boolean trustAll) Set whether all server certificates should be trustedClientSSLOptions.setTrustOptions(TrustOptions options) ClientSSLOptions.setUseAlpn(boolean useAlpn) ClientSSLOptions.setUseHybridKeyExchangeProtocol(boolean useHybridKeyExchangeProtocol) Methods in io.vertx.core.net with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionConnectOptions.setSslOptions(ClientSSLOptions sslOptions) Set the SSL options to use.QuicConnectOptions.setSslOptions(ClientSSLOptions sslOptions) Set the SSL to connect with, if none is set, the client one is used.NetClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.Constructors in io.vertx.core.net with parameters of type ClientSSLOptions -
Uses of ClientSSLOptions in io.vertx.db2client
Methods in io.vertx.db2client with parameters of type ClientSSLOptions -
Uses of ClientSSLOptions in io.vertx.ext.web.client
Methods in io.vertx.ext.web.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions) Create a web client using the providedvertxinstance, SSL options and default pooling options.static WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a web client using the providedvertxinstance and SSL options.WebClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object. -
Uses of ClientSSLOptions in io.vertx.grpc.client
Methods in io.vertx.grpc.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic GrpcClientGrpcClient.client(Vertx vertx, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.static GrpcClientGrpcClient.client(Vertx vertx, GrpcClientOptions grpcOptions, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.GrpcClientBuilder.with(ClientSSLOptions sslOptions) Configure the client HTTP transport options. -
Uses of ClientSSLOptions in io.vertx.mssqlclient
Methods in io.vertx.mssqlclient with parameters of type ClientSSLOptions -
Uses of ClientSSLOptions in io.vertx.mysqlclient
Methods in io.vertx.mysqlclient with parameters of type ClientSSLOptions -
Uses of ClientSSLOptions in io.vertx.pgclient
Methods in io.vertx.pgclient with parameters of type ClientSSLOptions -
Uses of ClientSSLOptions in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions) Create a HTTP/HTTPS client using the specified client and ssl optionsVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client, ssl options and pool optionsVertx.createNetClient(TcpClientConfig config, ClientSSLOptions sslOptions) Create a TCP/SSL client using the specified config and the specified ssl optionsVertx.createQuicClient(ClientSSLOptions defaultSslOptions) LikeVertx.createQuicClient(QuicClientConfig, ClientSSLOptions), with the default client configuration.Vertx.createQuicClient(QuicClientConfig config, ClientSSLOptions sslOptions) Create a configured Quic client. -
Uses of ClientSSLOptions in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionHttpClientAgent.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientBuilder.with(ClientSSLOptions options) Configure the client with the given SSLoptions. -
Uses of ClientSSLOptions in io.vertx.reactivex.core.net
Methods in io.vertx.reactivex.core.net with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionNetClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object. -
Uses of ClientSSLOptions in io.vertx.reactivex.ext.web.client
Methods in io.vertx.reactivex.ext.web.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions) Create a web client using the providedvertxinstance, SSL options and default pooling options.static WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a web client using the providedvertxinstance and SSL options.WebClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object. -
Uses of ClientSSLOptions in io.vertx.reactivex.grpc.client
Methods in io.vertx.reactivex.grpc.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic GrpcClientGrpcClient.client(Vertx vertx, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.static GrpcClientGrpcClient.client(Vertx vertx, GrpcClientOptions grpcOptions, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.GrpcClientBuilder.with(ClientSSLOptions sslOptions) Configure the client HTTP transport options. -
Uses of ClientSSLOptions in io.vertx.rxjava3.core
Methods in io.vertx.rxjava3.core with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions) Create a HTTP/HTTPS client using the specified client and ssl optionsVertx.createHttpClient(HttpClientConfig clientConfig, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a HTTP/HTTPS client using the specified client, ssl options and pool optionsVertx.createNetClient(TcpClientConfig config, ClientSSLOptions sslOptions) Create a TCP/SSL client using the specified config and the specified ssl optionsVertx.createQuicClient(ClientSSLOptions defaultSslOptions) LikeVertx.createQuicClient(QuicClientConfig, ClientSSLOptions), with the default client configuration.Vertx.createQuicClient(QuicClientConfig config, ClientSSLOptions sslOptions) Create a configured Quic client. -
Uses of ClientSSLOptions in io.vertx.rxjava3.core.http
Methods in io.vertx.rxjava3.core.http with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionHttpClientAgent.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientAgent.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebSocketClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.HttpClientBuilder.with(ClientSSLOptions options) Configure the client with the given SSLoptions. -
Uses of ClientSSLOptions in io.vertx.rxjava3.core.net
Methods in io.vertx.rxjava3.core.net with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionNetClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object. -
Uses of ClientSSLOptions in io.vertx.rxjava3.ext.web.client
Methods in io.vertx.rxjava3.ext.web.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions) Create a web client using the providedvertxinstance, SSL options and default pooling options.static WebClientWebClient.create(Vertx vertx, WebClientConfig config, ClientSSLOptions sslOptions, PoolOptions poolOptions) Create a web client using the providedvertxinstance and SSL options.WebClient.rxUpdateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.rxUpdateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.updateSSLOptions(ClientSSLOptions options) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object.WebClient.updateSSLOptions(ClientSSLOptions options, boolean force) Update the client with new SSLoptions, the update happens if the options object is valid and different from the existing options object. -
Uses of ClientSSLOptions in io.vertx.rxjava3.grpc.client
Methods in io.vertx.rxjava3.grpc.client with parameters of type ClientSSLOptionsModifier and TypeMethodDescriptionstatic GrpcClientGrpcClient.client(Vertx vertx, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.static GrpcClientGrpcClient.client(Vertx vertx, GrpcClientOptions grpcOptions, ClientSSLOptions sslOptions) Create a client with the specifiedsslOptions.GrpcClientBuilder.with(ClientSSLOptions sslOptions) Configure the client HTTP transport options. -
Uses of ClientSSLOptions in io.vertx.sqlclient
Methods in io.vertx.sqlclient that return ClientSSLOptionsMethods in io.vertx.sqlclient with parameters of type ClientSSLOptions