Class ClientBuilder
- java.lang.Object
-
- javax.ws.rs.client.ClientBuilder
-
- All Implemented Interfaces:
Configurable<ClientBuilder>
public abstract class ClientBuilder extends java.lang.Object implements Configurable<ClientBuilder>
Main entry point to the client API used to bootstrapClientinstances.- Since:
- 2.0
-
-
Field Summary
Fields Modifier and Type Field Description private static java.lang.StringJAXRS_DEFAULT_CLIENT_BUILDERDefault client builder implementation class name.static java.lang.StringJAXRS_DEFAULT_CLIENT_BUILDER_PROPERTYName of the property identifying theClientBuilderimplementation to be returned fromnewBuilder().
-
Constructor Summary
Constructors Modifier Constructor Description protectedClientBuilder()Allows custom implementations to extend theClientBuilderclass.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Clientbuild()Build a new client instance using all the configuration previously specified in this client builder.abstract ClientBuilderhostnameVerifier(javax.net.ssl.HostnameVerifier verifier)Set the hostname verifier to be used by the client to verify the endpoint's hostname against it's identification information.abstract ClientBuilderkeyStore(java.security.KeyStore keyStore, char[] password)Set the client-side key store.ClientBuilderkeyStore(java.security.KeyStore keyStore, java.lang.String password)Set the client-side key store.static ClientBuildernewBuilder()Create a newClientBuilderinstance using the default client builder implementation class provided by the JAX-RS implementation provider.static ClientnewClient()Create a newClientinstance using the default client builder implementation class provided by the JAX-RS implementation provider.static ClientnewClient(Configuration configuration)Create a new custom-configuredClientinstance using the default client builder implementation class provided by the JAX-RS implementation provider.abstract ClientBuildersslContext(javax.net.ssl.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 ClientBuildertrustStore(java.security.KeyStore trustStore)Set the client-side trust store.abstract ClientBuilderwithConfig(Configuration config)Set the internal configuration state to an externally provided configuration state.
-
-
-
Field Detail
-
JAXRS_DEFAULT_CLIENT_BUILDER_PROPERTY
public static final java.lang.String JAXRS_DEFAULT_CLIENT_BUILDER_PROPERTY
Name of the property identifying theClientBuilderimplementation to be returned fromnewBuilder().- See Also:
- Constant Field Values
-
JAXRS_DEFAULT_CLIENT_BUILDER
private static final java.lang.String JAXRS_DEFAULT_CLIENT_BUILDER
Default client builder implementation class name.- See Also:
- Constant Field Values
-
-
Method Detail
-
newBuilder
public static ClientBuilder newBuilder()
Create a newClientBuilderinstance using the default client builder implementation class provided by the JAX-RS implementation provider.- Returns:
- new client builder instance.
-
newClient
public static Client newClient()
Create a newClientinstance using the default client builder implementation class provided by the JAX-RS implementation provider.- Returns:
- new client instance.
-
newClient
public static Client newClient(Configuration configuration)
Create a new custom-configuredClientinstance using the default client builder implementation class provided by the JAX-RS implementation provider.- Parameters:
configuration- data used to provide initial configuration for the new client instance.- Returns:
- new configured client instance.
-
withConfig
public abstract ClientBuilder withConfig(Configuration config)
Set the internal configuration state to an externally provided configuration state.- Parameters:
config- external configuration state to replace the configuration of this configurable instance.- Returns:
- the updated client builder instance.
-
sslContext
public abstract ClientBuilder sslContext(javax.net.ssl.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. The SSL context is expected to have all the security infrastructure initialized, including the key and trust managers.Setting a SSL context instance resets any
key storeortrust storevalues previously specified.- Parameters:
sslContext- secure socket protocol implementation which acts as a factory for secure socket factories orSSL engines. Must not benull.- Returns:
- an updated client builder instance.
- Throws:
java.lang.NullPointerException- in case thesslContextparameter isnull.- See Also:
keyStore(java.security.KeyStore, char[]),keyStore(java.security.KeyStore, String),trustStore(java.security.KeyStore)
-
keyStore
public abstract ClientBuilder keyStore(java.security.KeyStore keyStore, char[] password)
Set the client-side key store. Key store contains client's private keys, and the certificates with their corresponding public keys.Setting a key store instance resets any
SSL context instancevalue previously specified.Note that a custom key store is only required if you want to enable a custom setup of a 2-way SSL connections (client certificate authentication).
- Parameters:
keyStore- client-side key store. Must not benull.password- client key password. Must not benull.- Returns:
- an updated client builder instance.
- Throws:
java.lang.NullPointerException- in case any of the supplied parameters isnull.- See Also:
sslContext(javax.net.ssl.SSLContext),keyStore(java.security.KeyStore, String),trustStore(java.security.KeyStore)
-
keyStore
public ClientBuilder keyStore(java.security.KeyStore keyStore, java.lang.String password)
Set the client-side key store. Key store contains client's private keys, and the certificates with their corresponding public keys.Setting a key store instance resets any
SSL context instancevalue previously specified.Note that for improved security of working with password data and avoid storing passwords in Java string objects, the
keyStore(java.security.KeyStore, char[])version of the method can be utilized. Also note that a custom key store is only required if you want to enable a custom setup of a 2-way SSL connections (client certificate authentication).- Parameters:
keyStore- client-side key store. Must not benull.password- client key password. Must not benull.- Returns:
- an updated client builder instance.
- Throws:
java.lang.NullPointerException- in case any of the supplied parameters isnull.- See Also:
sslContext(javax.net.ssl.SSLContext),keyStore(java.security.KeyStore, char[]),trustStore(java.security.KeyStore)
-
trustStore
public abstract ClientBuilder trustStore(java.security.KeyStore trustStore)
Set the client-side trust store. Trust store is expected to contain certificates from other parties the client is you expect to communicate with, or from Certificate Authorities that are trusted to identify other parties.Setting a trust store instance resets any
SSL context instancevalue previously specified.In case a custom trust store or custom SSL context is not specified, the trust management will be configured to use the default Java runtime settings.
- Parameters:
trustStore- client-side trust store. Must not benull.- Returns:
- an updated client builder instance.
- Throws:
java.lang.NullPointerException- in case the supplied trust store parameter isnull.- See Also:
sslContext(javax.net.ssl.SSLContext),keyStore(java.security.KeyStore, char[]),keyStore(java.security.KeyStore, String)
-
hostnameVerifier
public abstract ClientBuilder hostnameVerifier(javax.net.ssl.HostnameVerifier verifier)
Set the hostname verifier to be used by the client to verify the endpoint's hostname against it's identification information.- Parameters:
verifier- hostname verifier.- Returns:
- an updated client builder instance.
-
build
public abstract Client build()
Build a new client instance using all the configuration previously specified in this client builder.- Returns:
- a new client instance.
-
-