Uses of Class
jakarta.ws.rs.client.ClientBuilder
-
Packages that use ClientBuilder Package Description jakarta.ws.rs.client The JAX-RS client APIorg.glassfish.jersey.client Jersey client-side classes.org.glassfish.jersey.client.spi Jersey client SPI classes/interfaces. -
-
Uses of ClientBuilder in jakarta.ws.rs.client
Methods in jakarta.ws.rs.client that return ClientBuilder Modifier and Type Method Description abstract ClientBuilderClientBuilder. connectTimeout(long timeout, TimeUnit unit)Set the connect timeout.abstract ClientBuilderClientBuilder. executorService(ExecutorService executorService)Set the client-sideExecutorService.abstract ClientBuilderClientBuilder. hostnameVerifier(HostnameVerifier verifier)Set the hostname verifier to be used by the client to verify the endpoint's hostname against it's identification information.abstract ClientBuilderClientBuilder. keyStore(KeyStore keyStore, char[] password)Set the client-side key store.ClientBuilderClientBuilder. keyStore(KeyStore keyStore, String password)Set the client-side key store.static ClientBuilderClientBuilder. newBuilder()Create a newClientBuilderinstance using the default client builder implementation class provided by the JAX-RS implementation provider.abstract ClientBuilderClientBuilder. readTimeout(long timeout, TimeUnit unit)Set the read timeout.abstract ClientBuilderClientBuilder. scheduledExecutorService(ScheduledExecutorService scheduledExecutorService)Set the client-sideScheduledExecutorService.abstract ClientBuilderClientBuilder. sslContext(SSLContext sslContext)Set the SSL context that will be used when creating secured transport connections to server endpoints fromweb targetscreated by the client instance that is using this SSL context.abstract ClientBuilderClientBuilder. trustStore(KeyStore trustStore)Set the client-side trust store.abstract ClientBuilderClientBuilder. withConfig(Configuration config)Set the internal configuration state to an externally provided configuration state. -
Uses of ClientBuilder in org.glassfish.jersey.client
Subclasses of ClientBuilder in org.glassfish.jersey.client Modifier and Type Class Description classJerseyClientBuilderJersey provider ofJAX-RS client builder.Methods in org.glassfish.jersey.client that return ClientBuilder Modifier and Type Method Description ClientBuilderJerseyClientBuilder. connectTimeout(long timeout, TimeUnit unit)ClientBuilderJerseyClientBuilder. executorService(ExecutorService executorService)ClientBuilderJerseyClientBuilder. readTimeout(long timeout, TimeUnit unit)ClientBuilderJerseyClientBuilder. scheduledExecutorService(ScheduledExecutorService scheduledExecutorService) -
Uses of ClientBuilder in org.glassfish.jersey.client.spi
Methods in org.glassfish.jersey.client.spi with parameters of type ClientBuilder Modifier and Type Method Description voidClientBuilderListener. onNewBuilder(ClientBuilder builder)
-