org.glassfish.jersey.server.ServerProperties Maven / Gradle / Ivy
/*
* 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.server;
import org.glassfish.jersey.CommonProperties;
/**
* Jersey server-side configuration properties.
*
* @author Marek Potociar (marek.potociar at oracle.com)
* @author Martin Matula (martin.matula at oracle.com)
*/
public final class ServerProperties {
/**
* Defines one or more packages that contain application-specific resources and
* providers. If the property is set, the specified packages will be scanned for
* JAX-RS root resources (annotated with {@link javax.ws.rs.Path @Path}) and
* providers (annotated with {@link javax.ws.rs.ext.Provider @Provider}).
*
* The property value MUST be an instance of {@link String} or {@code String[]}
* array. Each {@code String} instance represents one or more package names
* that MUST be separated only by characters declared in common delimiters:
* {@code " ,;\n"}.
*
*
* A default value is not set.
*
*
* The name of the configuration property is {@value}.
*
*/
// TODO add support for ':' and any (number of consecutive) whitespace(s).
// TODO implement generic support
public static final String PROVIDER_PACKAGES = "jersey.config.server.provider.packages";
/**
* Sets the recursion strategy for package scanning. The value of {@code true} indicates
* that the {@link #PROVIDER_PACKAGES list of provided package names} should be scanned
* recursively including any nested packages. Value of {@code false} indicates that only
* packages in the list should be scanned. In such case any nested packages will be ignored.
*
* The property value MUST be an instance of {@code Boolean} type or a {@code String} convertible
* to {@code Boolean} type.
*
*
* A default value is {@code true}.
*
*
* The name of the configuration property is {@value}.
*
*
* @see #PROVIDER_PACKAGES
*/
public static final String PROVIDER_SCANNING_RECURSIVE = "jersey.config.server.provider.scanning.recursive";
/**
* Defines class-path that contains application-specific resources and
* providers. If the property is set, the specified class-path will be scanned
* for JAX-RS root resources (annotated with {@link javax.ws.rs.Path @Path})
* and providers (annotated with {@link javax.ws.rs.ext.Provider @Provider}).
* Each path element MUST be an absolute or relative directory, or a Jar file.
* The contents of a directory, including Java class files, jars files
* and sub-directories are scanned (recursively).
*
* The property value MUST be an instance of {@link String} or {@code String[]}
* array. Each {@code String} instance represents one or more paths
* that MUST be separated only by characters declared in common delimiters:
* {@code " ,;\n"}.
*
*
* A default value is not set.
*
*
* The name of the configuration property is {@value}.
*
*/
// TODO add support for ':' and any (number of consecutive) whitespace(s).
// TODO implement generic support
public static final String PROVIDER_CLASSPATH = "jersey.config.server.provider.classpath";
/**
* Defines one or more class names that implement application-specific resources
* and providers. If the property is set, the specified classes will be instantiated
* and registered as either application JAX-RS root resources (annotated with
* {@link javax.ws.rs.Path @Path}) or providers (annotated with
* {@link javax.ws.rs.ext.Provider @Provider}).
*
* The property value MUST be an instance of {@link String} or {@code String[]}
* array. Each {@code String} instance represents one or more class names
* that MUST be separated only by characters declared in common delimiters:
* {@code " ,;\n"}.
*
*
* A default value is not set.
*
*
* The name of the configuration property is {@value}.
*
*/
// TODO implement generic support
public static final String PROVIDER_CLASSNAMES = "jersey.config.server.provider.classnames";
/**
* Defines mapping of URI extensions to media types.
* The property is used by {@link org.glassfish.jersey.server.filter.UriConnegFilter}. See it's javadoc for more
* information on media type mappings.
*
* The property value MUST be an instance of {@link String}, {@code String[]} or {@code Map<String, MediaType>}.
* Each {@code String} instance represents one or more uri-extension-to-media-type map entries separated by
* a comma (","). Each map entry is a key-value pair separated by a colon (":").
* Here is an example of an acceptable String value mapping txt extension to text/plain and xml extension to application/xml:
*
txt : text/plain, xml : application/xml
*
*
* A default value is not set.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String MEDIA_TYPE_MAPPINGS = "jersey.config.server.mediaTypeMappings";
/**
* Defines mapping of URI extensions to languages.
* The property is used by {@link org.glassfish.jersey.server.filter.UriConnegFilter}. See it's javadoc for more
* information on language mappings.
*
* The property value MUST be an instance of {@link String}, {@code String[]} or {@code Map<String, String>}.
* Each {@code String} instance represents one or more uri-extension-to-language map entries separated by
* a comma (","). Each map entry is a key-value pair separated by a colon (":").
* Here is an example of an acceptable String value mapping english extension to "en" value of Content-Language header
* and french extension to "fr" Content-Language header value:
*
english : en, french : fr
*
*
* A default value is not set.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String LANGUAGE_MAPPINGS = "jersey.config.server.languageMappings";
/**
* Defines configuration of HTTP method overriding.
* This property is used by {@link org.glassfish.jersey.server.filter.HttpMethodOverrideFilter} to determine
* where it should look for method override information (e.g. request header or query parameters).
* {@link org.glassfish.jersey.server.filter.HttpMethodOverrideFilter.Source} enum lists the allowed property
* values.
*
* The property value must be an instance of {@link String}, {@code String[]},
* {@link org.glassfish.jersey.server.filter.HttpMethodOverrideFilter.Source Source} or
* {@code Source[]}.
* Each {@code String} instance represents one or more class names separated by characters declared in
* common delimiters: {@code " ,;\n"}.
*
*
* The default value is {@code "HEADER, QUERY"}.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String HTTP_METHOD_OVERRIDE = "jersey.config.server.httpMethodOverride";
/**
* If set the wadl generator configuration that provides a {@link org.glassfish.jersey.server.wadl.WadlGenerator}.
*
* The type of this property must be a subclass or an instance of a subclass of
* {@link org.glassfish.jersey.server.wadl.config.WadlGeneratorConfig}.
*
*
* If this property is not set the default wadl generator will be used for generating wadl.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String PROPERTY_WADL_GENERATOR_CONFIG = "jersey.config.server.wadl.generatorConfig";
/**
* If {@code true} then disable WADL generation.
*
* By default WADL generation is automatically enabled, if JAXB is
* present in the classpath and the auto-discovery feature is enabled or if an appropriate {@link javax.ws.rs.core.Feature
* feature} is enabled.
*
* The default value is {@code false}.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String FEATURE_DISABLE_WADL = "jersey.config.server.wadl.disableWadl";
/**
* If {@code true} then disable Bean Validation.
*
* By default Bean Validation is automatically enabled, if appropriate Jersey module is
* present in the classpath and the auto-discovery feature is enabled or if an appropriate {@link javax.ws.rs.core.Feature
* feature} is enabled.
*
* The default value is {@code false}.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String FEATURE_DISABLE_BEAN_VALIDATION = "jersey.config.beanValidation.disable.server";
/**
* If {@code true} then disable check whether the overriding / implementing methods are annotated with
* {@link javax.validation.executable.ValidateOnExecution} as well as one of their predecessor (in hierarchy).
*
* By default this checks is automatically enabled, if Bean Validation is enabled as well (see
* {@link #FEATURE_DISABLE_BEAN_VALIDATION}).
*
* The default value is {@code false}.
*
*
* The name of the configuration property is {@value}.
*
*
* @see javax.validation.executable.ValidateOnExecution
*/
public static final String FEATURE_DISABLE_VALIDATE_ON_EXECUTABLE_OVERRIDE_CHECK =
"jersey.config.beanValidation.disable.validateOnExecutableCheck.server";
/**
* If {@code true} then enable sending of validation error entity in {@code Response} (validation has to be enabled by registering
* {@code ValidationFeature} in the application).
*
* The default value is {@code false} and only status code is sent in the {@code Response}.
*
*
* The name of the configuration property is {@value}.
*
*/
public static final String FEATURE_OUTPUT_VALIDATION_ERROR_ENTITY
= "jersey.config.beanValidation.enableOutputValidationErrorEntity.server";
/**
* If {@code true} then disable auto discovery on server.
*
* By default auto discovery is automatically enabled if global property
* {@value org.glassfish.jersey.CommonProperties#FEATURE_DISABLE_AUTO_DISCOVERY} is not disabled. If set then the server
* 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_DISABLE_AUTO_DISCOVERY
* @see #FEATURE_DISABLE_BEAN_VALIDATION
* @see #FEATURE_DISABLE_WADL
*/
public static final String FEATURE_DISABLE_AUTO_DISCOVERY = CommonProperties.FEATURE_DISABLE_AUTO_DISCOVERY + ".server";
/**
* If {@code true} then disable registration of Json Processing (JSR-353) feature on server.
*
* By default Json Processing is automatically enabled if global property
* {@value org.glassfish.jersey.CommonProperties#FEATURE_DISABLE_JSON_PROCESSING} is not disabled. If set then the server
* 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_DISABLE_JSON_PROCESSING
*/
public static final String FEATURE_DISABLE_JSON_PROCESSING = CommonProperties.FEATURE_DISABLE_JSON_PROCESSING + ".server";
/**
* If {@code true} then validation of sub resource locator model is disabled.
*
* This options is used for performance purpose and can cause problems during runtime.
*
* The validation is run on the model which is created either from returned class or instance or on directly
* returned {@link org.glassfish.jersey.server.model.Resource resource}. Disabling a validation (by {@code false})
* could cause invalid behaviour and errors during the processing of sub resource locator model in the case the model
* contains problems which cannot be handled by disabled validation.
*
* Default value is {@code false}.
*
* The name of the configuration property is {@value}.
*
*
*/
public static final String RESOURCE_LOCATOR_VALIDATION_DISABLE = "jersey.config.server.resource.locator.validation.disable";
private ServerProperties() {
// prevents instantiation
}
}