All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glassfish.jersey.client.ClientProperties Maven / Gradle / Ivy

Go to download

A bundle project producing JAX-RS RI bundles. The primary artifact is an "all-in-one" OSGi-fied JAX-RS RI bundle (jaxrs-ri.jar). Attached to that are two compressed JAX-RS RI archives. The first archive (jaxrs-ri.zip) consists of binary RI bits and contains the API jar (under "api" directory), RI libraries (under "lib" directory) as well as all external RI dependencies (under "ext" directory). The secondary archive (jaxrs-ri-src.zip) contains buildable JAX-RS RI source bundle and contains the API jar (under "api" directory), RI sources (under "src" directory) as well as all external RI dependencies (under "ext" directory). The second archive also contains "build.xml" ANT script that builds the RI sources. To build the JAX-RS RI simply unzip the archive, cd to the created jaxrs-ri directory and invoke "ant" from the command line.

There is a newer version: 3.1.10
Show newest version
/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2012-2013 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */
package org.glassfish.jersey.client;

import org.glassfish.jersey.CommonProperties;

/**
 * Jersey client implementation configuration properties.
 *
 * @author Marek Potociar (marek.potociar at oracle.com)
 * @author Libor Kramolis (libor.kramolis at oracle.com)
 */
public final class ClientProperties {
    /**
     * Automatic redirection. A value of {@code true} declares that the client will
     * automatically redirect to the URI declared in 3xx responses.
     *
     * The value MUST be an instance convertible to {@link java.lang.Boolean}.
     * 

* The default value is {@code true}. *

* The name of the configuration property is {@value}. */ public static final String FOLLOW_REDIRECTS = "jersey.config.client.followRedirects"; /** * Read timeout interval, in milliseconds. * * The value MUST be an instance convertible to {@link java.lang.Integer}. * A value of zero (0) is equivalent to an interval of infinity. * *

* The default value is infinity (0). *

* The name of the configuration property is {@value}. */ public static final String READ_TIMEOUT = "jersey.config.client.readTimeout"; /** * Connect timeout interval, in milliseconds. * * The value MUST be an instance convertible to {@link java.lang.Integer}. * A value of zero (0) is equivalent to an interval of infinity. *

* The default value is infinity (0). *

* The name of the configuration property is {@value}. */ public static final String CONNECT_TIMEOUT = "jersey.config.client.connectTimeout"; /** * Chunked encoding size. * * The value MUST be an instance convertible to {@link java.lang.Integer}. *

* If the property is absent then chunked encoding will not be used. * A value <= 0 declares that chunked encoding will be used with * the default chunk size. A value > 0 declares that chunked encoding * will be used with the value as the declared chunk size. *

* A default value is not set. *

* The name of the configuration property is {@value}. */ // TODO add support (ported from Jersey 1.x). public static final String CHUNKED_ENCODING_SIZE = "jersey.config.client.chunkedEncodingSize"; /** * Automatic response buffering in case of an exception. * * A value of {@code true} declares that the client will automatically read & * buffer the response entity (if any) and close all resources associated with * the response. * * The value MUST be an instance convertible to {@link java.lang.Boolean}. *

* The default value is {@code true}. *

* The name of the configuration property is {@value}. */ // TODO add support (ported from Jersey 1.x). public static final String BUFFER_RESPONSE_ENTITY_ON_EXCEPTION = "jersey.config.client.bufferResponseEntityOnException"; /** * Asynchronous thread pool size. * * The value MUST be an instance of {@link java.lang.Integer}. *

* If the property is absent then thread pool used for async requests will * be initialized as default cached thread pool, which creates new thread * for every new request, see {@link java.util.concurrent.Executors}. When * a value > 0 is provided, the created cached thread pool limited to that * number of threads will be utilized. *

* A default value is not set. *

* The name of the configuration property is {@value}. */ // TODO add support (ported from Jersey 1.x). public static final String ASYNC_THREADPOOL_SIZE = "jersey.config.client.async.threadPoolSize"; /** * If {@link org.glassfish.jersey.client.filter.EncodingFilter} is registered, this property indicates the value * of Content-Encoding property the filter should be adding. * *

The value MUST be an instance of {@link String}.

*

The default value is {@code null}.

*

The name of the configuration property is {@value}.

*/ public static final String USE_ENCODING = "jersey.config.client.useEncoding"; /** * A value of {@code true} declares that the client will try to set unsupported HTTP method * to {@link java.net.HttpURLConnection} via reflection. *

* NOTE: Enabling this feature might cause security related warnings/errors and it might break when * other JDK implementation is used. Use only when you know what you are doing. *

*

The value MUST be an instance of {@link java.lang.Boolean}.

*

The default value is {@code false}.

*

The name of the configuration property is {@value}.

*/ public static final String HTTP_URL_CONNECTION_SET_METHOD_WORKAROUND = "jersey.config.client.httpUrlConnection.setMethodWorkaround"; /** * If {@code true} then disable auto-discovery on the client. *

* By default auto-discovery on client is automatically enabled if global property * {@value org.glassfish.jersey.CommonProperties#FEATURE_AUTO_DISCOVERY_DISABLE} is not disabled. If set then the client * property value overrides the global property value. *

* The default value is {@code false}. *

*

* The name of the configuration property is {@value}. *

* * @see org.glassfish.jersey.CommonProperties#FEATURE_AUTO_DISCOVERY_DISABLE */ public static final String FEATURE_AUTO_DISCOVERY_DISABLE = CommonProperties.FEATURE_AUTO_DISCOVERY_DISABLE + ".client"; /** * If {@code true} then disable configuration of Json Processing (JSR-353) feature on client. *

* By default Json Processing on client is automatically enabled if global property * {@value org.glassfish.jersey.CommonProperties#JSON_PROCESSING_FEATURE_DISABLE} is not disabled. If set then the client * property value overrides the global property value. *

* The default value is {@code false}. *

*

* The name of the configuration property is {@value}. *

* * @see org.glassfish.jersey.CommonProperties#JSON_PROCESSING_FEATURE_DISABLE */ public static final String JSON_PROCESSING_FEATURE_DISABLE = CommonProperties.JSON_PROCESSING_FEATURE_DISABLE + ".client"; /** * If {@code true} then disable META-INF/services lookup on client. *

* By default Jersey lookups SPI implementations described by META-INF/services/* files. * Then you can register appropriate provider classes by {@link javax.ws.rs.core.Application}. *

*

* The default value is {@code false}. *

*

* The name of the configuration property is {@value}. *

* * @see org.glassfish.jersey.CommonProperties#METAINF_SERVICES_LOOKUP_DISABLE */ public static final String METAINF_SERVICES_LOOKUP_DISABLE = CommonProperties.METAINF_SERVICES_LOOKUP_DISABLE + ".client"; /** * If {@code true} then disable configuration of MOXy Json feature on client. *

* By default MOXy Json on client is automatically enabled if global property * {@value org.glassfish.jersey.CommonProperties#MOXY_JSON_FEATURE_DISABLE} is not disabled. If set then the client * property value overrides the global property value. *

* The default value is {@code false}. *

*

* The name of the configuration property is {@value}. *

* * @see org.glassfish.jersey.CommonProperties#MOXY_JSON_FEATURE_DISABLE * @since 2.1 */ public static final String MOXY_JSON_FEATURE_DISABLE = CommonProperties.MOXY_JSON_FEATURE_DISABLE + ".client"; private ClientProperties() { // prevents instantiation } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy