
no.digipost.api.client.util.JerseyClientProvider Maven / Gradle / Ivy
/**
* Copyright (C) Posten Norge AS
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package no.digipost.api.client.util;
import no.digipost.api.client.readers.TextErrorMessageBodyReader;
import org.glassfish.jersey.client.ClientConfig;
import org.glassfish.jersey.client.ClientProperties;
import org.glassfish.jersey.media.multipart.MultiPartFeature;
import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
public class JerseyClientProvider {
private static final Integer CONNECTION_TIMEOUT = 60000;
private static final Integer READ_TIMEOUT = 60000;
public static Client newClient() {
return newClient(CONNECTION_TIMEOUT, READ_TIMEOUT);
}
public static Client newClient(final int connectionTimeout, final int readTimout) {
ClientConfig config = new ClientConfig();
config.register(MultiPartFeature.class);
config.register(TextErrorMessageBodyReader.class);
config.property(ClientProperties.CONNECT_TIMEOUT, connectionTimeout);
config.property(ClientProperties.READ_TIMEOUT, readTimout);
// TODO Ready to use Apache HTTP client whenever the HTTP header related issue in Jersey/Jax-RS is fixed
// Apache HTTP client
//config.connectorProvider(new ApacheConnectorProvider());
//PoolingHttpClientConnectionManager connectionManager = new PoolingHttpClientConnectionManager();
//connectionManager.setDefaultMaxPerRoute(100);
//connectionManager.setMaxTotal(100);
//config.property(ApacheClientProperties.CONNECTION_MANAGER, connectionManager);
//config.property(ApacheClientProperties.DISABLE_COOKIES, true);
//config.property(ClientProperties.PROXY_URI, "http://some.proxy.example.com:3128");
return ClientBuilder.newClient(config);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy