blob: df60d2c7b1b1bb588f3f8d144a9abd5cae921957 [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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 org.apache.juneau.rest.annotation;
import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
import java.lang.annotation.*;
import java.nio.charset.*;
import java.util.*;
import javax.servlet.*;
import org.apache.juneau.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.config.*;
import org.apache.juneau.cp.*;
import org.apache.juneau.encoders.*;
import org.apache.juneau.httppart.*;
import org.apache.juneau.parser.*;
import org.apache.juneau.rest.*;
import org.apache.juneau.rest.arg.*;
import org.apache.juneau.rest.converter.*;
import org.apache.juneau.rest.debug.*;
import org.apache.juneau.rest.guard.*;
import org.apache.juneau.rest.httppart.*;
import org.apache.juneau.rest.logger.*;
import org.apache.juneau.rest.processor.*;
import org.apache.juneau.rest.servlet.*;
import org.apache.juneau.rest.staticfile.*;
import org.apache.juneau.rest.swagger.*;
import org.apache.juneau.rest.vars.*;
import org.apache.juneau.serializer.*;
/**
* Used to denote that a class is a REST resource and to associate metadata on it.
*
* <p>
* Usually used on a subclass of {@link RestServlet}, but can be used to annotate any class that you want to expose as
* a REST resource.
*
* <ul class='seealso'>
* <li class='link'>{@doc jrs.AnnotatedClasses}
* <li class='extlink'>{@source}
* </ul>
*/
@Target(TYPE)
@Retention(RUNTIME)
@Inherited
@ContextApply({RestAnnotation.RestContextApply.class,RestAnnotation.RestOpContextApply.class})
@AnnotationGroup(Rest.class)
public @interface Rest {
/**
* Override the builder class used for creating the {@link RestContext} bean for this resource.
*
* <p>
* Can be used when you want to override any of the protected methods in the {@link org.apache.juneau.rest.RestContext.Builder} to provide
* customized behavior.
*
* <p>
* The subclass must contain a public constructor that takes in the following arguments that should be passed to the parent constructor:
* <ul>
* <li>{@link Class} - The resource class.
* <li>{@link RestContext} - The parent context if this is a child of another resource. Can be <jk>null</jk>.
* <li>{@link ServletConfig} - The servlet config passed in during servlet initialization.
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestContext.Builder> builder() default RestContext.Builder.Void.class;
/**
* Disable content URL parameter.
*
* <p>
* When enabled, the HTTP content content on PUT and POST requests can be passed in as text using the <js>"content"</js>
* URL parameter.
* <br>
* For example:
* <p class='burlenc'>
* ?content=(name='John%20Smith',age=45)
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#disableContentParam()}
* </ul>
*
* @return The annotation value.
*/
String disableContentParam() default "";
/**
* Allowed header URL parameters.
*
* <p>
* When specified, allows headers such as <js>"Accept"</js> and <js>"Content-Type"</js> to be passed in as URL query
* parameters.
* <br>
* For example:
* <p class='burlenc'>
* ?Accept=text/json&amp;Content-Type=text/json
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* Use <js>"*"</js> to represent all methods.
* <li class='note'>
* Use <js>"NONE"</js> (case insensitive) to suppress inheriting a value from a parent class.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#allowedHeaderParams(String)}
* </ul>
*
* @return The annotation value.
*/
String allowedHeaderParams() default "";
/**
* Allowed method headers.
*
* <p>
* A comma-delimited list of HTTP method names that are allowed to be passed as values in an <c>X-Method</c> HTTP header
* to override the real HTTP method name.
* <p>
* Allows you to override the actual HTTP method with a simulated method.
* <br>For example, if an HTTP Client API doesn't support <c>PATCH</c> but does support <c>POST</c> (because
* <c>PATCH</c> is not part of the original HTTP spec), you can add a <c>X-Method: PATCH</c> header on a normal
* <c>HTTP POST /foo</c> request call which will make the HTTP call look like a <c>PATCH</c> request in any of the REST APIs.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* Method names are case-insensitive.
* <li class='note'>
* Use <js>"*"</js> to represent all methods.
* <li class='note'>
* Use <js>"NONE"</js> (case insensitive) to suppress inheriting a value from a parent class.
* </ul>
*
* @return The annotation value.
*/
String allowedMethodHeaders() default "";
/**
* Allowed method parameters.
*
* <p>
* When specified, the HTTP method can be overridden by passing in a <js>"method"</js> URL parameter on a regular
* GET request.
* <br>
* For example:
* <p class='burlenc'>
* ?method=OPTIONS
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* Use <js>"*"</js> to represent all methods.
* <li class='note'>
* Use <js>"NONE"</js> (case insensitive) to suppress inheriting a value from a parent class.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#allowedMethodParams(String)}
* </ul>
*
* @return The annotation value.
*/
String allowedMethodParams() default "";
/**
* Specifies the logger to use for logging of HTTP requests and responses.
*
* <ul class='notes'>
* <li class='note'>
* The default call logger if not specified is {@link RestLogger}.
* <li class='note'>
* The resource class itself will be used if it implements the {@link RestLogger} interface and not
* explicitly overridden via this annotation.
* <li class='note'>
* The implementation must have one of the following constructors:
* <ul>
* <li><code><jk>public</jk> T(RestContext)</code>
* <li><code><jk>public</jk> T()</code>
* <li><code><jk>public static</jk> T <jsm>create</jsm>(RestContext)</code>
* <li><code><jk>public static</jk> T <jsm>create</jsm>()</code>
* </ul>
* <li class='note'>
* Inner classes of the REST resource class are allowed.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#callLogger()}
* <li class='link'>{@doc jrs.LoggingAndDebugging}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestLogger> callLogger() default RestLogger.Void.class;
/**
* The resolver used for resolving instances of child resources and various other beans including:
* <ul>
* <li>{@link RestLogger}
* <li>{@link SwaggerProvider}
* <li>{@link FileFinder}
* <li>{@link StaticFiles}
* </ul>
*
* <p>
* Note that the <c>SpringRestServlet</c> classes uses the <c>SpringBeanStore</c> class to allow for any
* Spring beans to be injected into your REST resources.
*
* @return The annotation value.
*/
Class<? extends BeanStore> beanStore() default BeanStore.Void.class;
/**
* REST children.
*
* <p>
* Defines children of this resource.
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Children on child are combined with those on parent class.
* <li>Children are list parent-to-child in the order they appear in the annotation.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#children(Object...)}
* </ul>
*
* @return The annotation value.
*/
Class<?>[] children() default {};
/**
* Client version header.
*
* <p>
* Specifies the name of the header used to denote the client version on HTTP requests.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#clientVersionHeader(String)}
* </ul>
*
* @return The annotation value.
*/
String clientVersionHeader() default "";
/**
* Optional location of configuration file for this servlet.
*
* <p>
* The configuration file .
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Config file is searched for in child-to-parent order.
* </ul>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* Use the keyword <c>SYSTEM_DEFAULT</c> to refer to the system default configuration
* returned by the {@link Config#getSystemDefault()}.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#config(Config)}
* </ul>
*
* @return The annotation value.
*/
String config() default "";
/**
* Supported content media types.
*
* <p>
* Overrides the media types inferred from the parsers that identify what media types can be consumed by the resource.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#consumes(MediaType...)}
* </ul>
*
* @return The annotation value.
*/
String[] consumes() default {};
/**
* REST context class.
*
* <p>
* Allows you to extend the {@link RestContext} class to modify how any of the methods are implemented.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#type(Class)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestContext> contextClass() default RestContext.Void.class;
/**
* Class-level response converters.
*
* <p>
* Associates one or more {@link RestConverter converters} with a resource class.
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Converters on child are combined with those on parent class.
* <li>Converters are executed child-to-parent in the order they appear in the annotation.
* <li>Converters on methods are executed before those on classes.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#converters()} - Registering converters with REST resources.
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestConverter>[] converters() default {};
/**
* Enable debug mode.
*
* <p>
* Enables the following:
* <ul class='spaced-list'>
* <li>
* HTTP request/response bodies are cached in memory for logging purposes.
* <li>
* HTTP requests/responses are logged to the registered {@link RestLogger}.
* </ul>
*
* <ul class='values'>
* <li><js>"true"</js> - Debug is enabled for all requests.
* <li><js>"false"</js> - Debug is disabled for all requests.
* <li><js>"conditional"</js> - Debug is enabled only for requests that have a <c class='snippet'>Debug: true</c> header.
* </ul>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* These debug settings can be overridden by the {@link Rest#debugOn()} annotation or at runtime by directly
* calling {@link RestRequest#setDebug()}.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#debugEnablement()}
* </ul>
*
* @return The annotation value.
*/
String debug() default "";
/**
* Debug enablement bean.
*
* TODO
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#debugEnablement()}
* </ul>
*
* @return The annotation value.
*/
Class<? extends DebugEnablement> debugEnablement() default DebugEnablement.Void.class;
/**
* Enable debug mode on specified classes/methods.
*
* <p>
* Enables the following:
* <ul class='spaced-list'>
* <li>
* HTTP request/response bodies are cached in memory for logging purposes on matching classes and methods.
* <li>
* HTTP requests/responses are logged to the registered {@link RestLogger}.
* </ul>
*
* <p>
* Consists of a comma-delimited list of strings of the following forms:
* <ul>
* <li><js>"class-identifier"</js> - Enable debug on the specified class.
* <li><js>"class-identifier=[true|false|conditional]"</js> - Explicitly enable debug on the specified class.
* <li><js>"method-identifier"</js> - Enable debug on the specified class.
* <li><js>"method-identifier=[true|false|conditional]"</js> - Explicitly enable debug on the specified class.
* </ul>
*
* <p>
* Class identifiers can be any of the following forms:
* <ul>
* <li>Fully qualified:
* <ul>
* <li><js>"com.foo.MyClass"</js>
* </ul>
* <li>Fully qualified inner class:
* <ul>
* <li><js>"com.foo.MyClass$Inner1$Inner2"</js>
* </ul>
* <li>Simple:
* <ul>
* <li><js>"MyClass"</js>
* </ul>
* <li>Simple inner:
* <ul>
* <li><js>"MyClass$Inner1$Inner2"</js>
* <li><js>"Inner1$Inner2"</js>
* <li><js>"Inner2"</js>
* </ul>
* </ul>
*
* <p>
* Method identifiers can be any of the following forms:
* <ul>
* <li>Fully qualified with args:
* <ul>
* <li><js>"com.foo.MyClass.myMethod(String,int)"</js>
* <li><js>"com.foo.MyClass.myMethod(java.lang.String,int)"</js>
* <li><js>"com.foo.MyClass.myMethod()"</js>
* </ul>
* <li>Fully qualified:
* <ul>
* <li><js>"com.foo.MyClass.myMethod"</js>
* </ul>
* <li>Simple with args:
* <ul>
* <li><js>"MyClass.myMethod(String,int)"</js>
* <li><js>"MyClass.myMethod(java.lang.String,int)"</js>
* <li><js>"MyClass.myMethod()"</js>
* </ul>
* <li>Simple:
* <ul>
* <li><js>"MyClass.myMethod"</js>
* </ul>
* <li>Simple inner class:
* <ul>
* <li><js>"MyClass$Inner1$Inner2.myMethod"</js>
* <li><js>"Inner1$Inner2.myMethod"</js>
* <li><js>"Inner2.myMethod"</js>
* </ul>
* </ul>
*
* <h5 class='figure'>Example:</h5>
* <p class='bjava'>
* <jc>// Turn on debug per-request on the class and always on the doX() method</jc>.
* <ja>@Rest</ja>(
* debugOn=<js>"MyResource=conditional,MyResource.doX=true"</js>
* )
* <jk>public class</jk> MyResource {
*
* <ja>@RestGet</ja>
* <jk>public void</jk> String getX() {
* ...
* }
* </p>
*
* <p>
* A more-typical scenario is to pull this setting from an external source such as system property or environment
* variable:
*
* <h5 class='figure'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* debugOn=<js>"$E{DEBUG_ON_SETTINGS}"</js>
* )
* <jk>public class</jk> MyResource {...}
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* These debug settings override the settings define via {@link Rest#debug()} and {@link RestOp#debug()}.
* <li class='note'>
* These debug settings can be overridden at runtime by directly calling {@link RestRequest#setDebug()}.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#debugOn(String)}
* </ul>
*
* @return The annotation value.
*/
String debugOn() default "";
/**
* Default <c>Accept</c> header.
*
* <p>
* The default value for the <c>Accept</c> header if not specified on a request.
*
* <p>
* This is a shortcut for using {@link #defaultRequestHeaders()} for just this specific header.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* @return The annotation value.
*/
String defaultAccept() default "";
/**
* Default character encoding.
*
* <p>
* The default character encoding for the request and response if not specified on the request.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#defaultCharset(Charset)}
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#defaultCharset(Charset)}
* <li class='ja'>{@link RestOp#defaultCharset}
* <li class='ja'>{@link RestGet#defaultCharset}
* <li class='ja'>{@link RestPut#defaultCharset}
* <li class='ja'>{@link RestPost#defaultCharset}
* <li class='ja'>{@link RestDelete#defaultCharset}
* </ul>
*
* @return The annotation value.
*/
String defaultCharset() default "";
/**
* Default <c>Content-Type</c> header.
*
* <p>
* The default value for the <c>Content-Type</c> header if not specified on a request.
*
* <p>
* This is a shortcut for using {@link #defaultRequestHeaders()} for just this specific header.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* @return The annotation value.
*/
String defaultContentType() default "";
/**
* Default request attributes.
*
* <p>
* Specifies default values for request attributes if they're not already set on the request.
*
* <p>
* Affects values returned by the following methods:
* <ul>
* <li class='jm'>{@link RestRequest#getAttribute(String)}.
* <li class='jm'>{@link RestRequest#getAttributes()}.
* </ul>
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <jc>// Defined via annotation resolving to a config file setting with default value.</jc>
* <ja>@Rest</ja>(defaultRequestAttributes={<js>"Foo=bar"</js>, <js>"Baz: $C{REST/myAttributeValue}"</js>})
* <jk>public class</jk> MyResource {
*
* <jc>// Override at the method level.</jc>
* <ja>@RestGet</ja>(defaultRequestAttributes={<js>"Foo: bar"</js>})
* <jk>public</jk> Object myMethod() {...}
* }
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#defaultRequestAttributes(NamedAttribute...)}
* <li class='ja'>{@link RestOp#defaultRequestAttributes()}
* <li class='ja'>{@link RestGet#defaultRequestAttributes()}
* <li class='ja'>{@link RestPut#defaultRequestAttributes()}
* <li class='ja'>{@link RestPost#defaultRequestAttributes()}
* <li class='ja'>{@link RestDelete#defaultRequestAttributes()}
* </ul>
*
* @return The annotation value.
*/
String[] defaultRequestAttributes() default {};
/**
* Default request headers.
*
* <p>
* Specifies default values for request headers if they're not passed in through the request.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#defaultRequestHeaders(org.apache.http.Header...)}
* </ul>
*
* @return The annotation value.
*/
String[] defaultRequestHeaders() default {};
/**
* Default response headers.
*
* <p>
* Specifies default values for response headers if they're not set after the Java REST method is called.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#defaultResponseHeaders(org.apache.http.Header...)}
* </ul>
*
* @return The annotation value.
*/
String[] defaultResponseHeaders() default {};
/**
* Optional servlet description.
*
* <p>
* It is used to populate the Swagger description field.
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Description is searched for in child-to-parent order.
* </ul>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* The format is plain-text.
* <br>Multiple lines are concatenated with newlines.
* </ul>
*
* @return The annotation value.
*/
String[] description() default {};
/**
* Specifies the compression encoders for this resource.
*
* <p>
* Encoders are used to enable various kinds of compression (e.g. <js>"gzip"</js>) on requests and responses.
*
* <p>
* Encoders are automatically inherited from {@link Rest#encoders()} annotations on parent classes with the encoders on child classes
* prepended to the encoder group.
* The {@link org.apache.juneau.encoders.EncoderSet.NoInherit} class can be used to prevent inheriting from the parent class.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <jc>// Define a REST resource that handles GZIP compression.</jc>
* <ja>@Rest</ja>(
* encoders={
* GzipEncoder.<jk>class</jk>
* }
* )
* <jk>public class</jk> MyResource {
* ...
* }
* </p>
*
* <p>
* The encoders can also be tailored at the method level using {@link RestOp#encoders()} (and related annotations).
*
* <p>
* The programmatic equivalent to this annotation is:
* <p class='bjava'>
* RestContext.Builder <jv>builder</jv> = RestContext.<jsm>create</jsm>(<jv>resource</jv>);
* <jv>builder</jv>.getEncoders().add(<jv>classes</jv>);
* </p>
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Encoders on child are combined with those on parent class.
* </ul>
*
* <ul class='seealso'>
* <li class='link'>{@doc jrs.Encoders}
* </ul>
*
* @return The annotation value.
*/
Class<? extends Encoder>[] encoders() default {};
/**
* File finder.
*
* <p>
* Used to retrieve localized files from the classpath for a variety of purposes including:
* <ul>
* <li>Resolution of {@link FileVar $F} variable contents.
* </ul>
*
* <p>
* The file finder can be accessed through the following methods:
* <ul class='javatree'>
* <li class='jm'>{@link RestContext#getFileFinder()}
* <li class='jm'>{@link RestRequest#getFileFinder()}
* </ul>
*
* @return The annotation value.
*/
Class<? extends FileFinder> fileFinder() default FileFinder.Void.class;
/**
* Class-level guards.
*
* <p>
* Associates one or more {@link RestGuard RestGuards} with all REST methods defined in this class.
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Guards on child are combined with those on parent class.
* <li>Guards are executed child-to-parent in the order they appear in the annotation.
* <li>Guards on methods are executed before those on classes.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#guards()}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestGuard>[] guards() default {};
/**
* The maximum allowed input size (in bytes) on HTTP requests.
*
* <p>
* Useful for alleviating DoS attacks by throwing an exception when too much input is received instead of resulting
* in out-of-memory errors which could affect system stability.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#maxInput(String)}
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#maxInput(String)}
* <li class='ja'>{@link RestOp#maxInput}
* <li class='ja'>{@link RestPost#maxInput}
* <li class='ja'>{@link RestPut#maxInput}
* </ul>
*
* @return The annotation value.
*/
String maxInput() default "";
/**
* Messages.
*
* Identifies the location of the resource bundle for this class.
*
* <p>
* There are two possible formats:
* <ul>
* <li>A simple string - Represents the {@link org.apache.juneau.cp.Messages.Builder#name(String) name} of the resource bundle.
* <br><br><i>Example:</i>
* <p class='bjava'>
* <jc>// Bundle name is Messages.properties.</jc>
* <ja>@Rest</ja>(messages=<js>"Messages"</js>)
* </p>
* <li>Simplified JSON - Represents parameters for the {@link org.apache.juneau.cp.Messages.Builder} class.
* <br><br><i>Example:</i>
* <p class='bjava'>
* <jc>// Bundles can be found in two packages.</jc>
* <ja>@Rest</ja>(messages=<js>"{name:'Messages',baseNames:['{package}.{name}','{package}.i18n.{name}']"</js>)
* </p>
* </ul>
*
* <p>
* If the bundle name is not specified, the class name of the resource object is used.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* @return The annotation value.
*/
String messages() default "";
/**
* Dynamically apply this annotation to the specified classes.
*
* <ul class='seealso'>
* <li class='link'>{@doc jm.DynamicallyAppliedAnnotations}
* </ul>
*
* @return The annotation value.
*/
String[] on() default {};
/**
* Dynamically apply this annotation to the specified classes.
*
* <p>
* Identical to {@link #on()} except allows you to specify class objects instead of a strings.
*
* <ul class='seealso'>
* <li class='link'>{@doc jm.DynamicallyAppliedAnnotations}
* </ul>
*
* @return The annotation value.
*/
Class<?>[] onClass() default {};
/**
* Specifies the parsers for converting HTTP request bodies into POJOs.
*
* <p>
* Parsers are used to convert the content of HTTP requests into POJOs.
* <br>Any of the Juneau framework parsers can be used in this setting.
* <br>The parser selected is based on the request <c>Content-Type</c> header matched against the values returned by the following method
* using a best-match algorithm:
* <ul class='javatree'>
* <li class='jm'>{@link Parser#getMediaTypes()}
* </ul>
*
* <p>
* Parsers are automatically inherited from {@link Rest#parsers()} annotations on parent classes with the parsers on child classes
* prepended to the parser group.
* The {@link org.apache.juneau.parser.ParserSet.NoInherit} class can be used to prevent inheriting from the parent class.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <jc>// Define a REST resource that can consume JSON and XML.</jc>
* <ja>@Rest</ja>(
* parsers={
* JsonParser.<jk>class</jk>,
* XmlParser.<jk>class</jk>
* }
* )
* <jk>public class</jk> MyResource {
* ...
* }
* </p>
*
* <p>
* The parsers can also be tailored at the method level using {@link RestOp#parsers()} (and related annotations).
*
* <p>
* The programmatic equivalent to this annotation is:
* <p class='bjava'>
* RestContext.Builder <jv>builder</jv> = RestContext.<jsm>create</jsm>(<jv>resource</jv>);
* <jv>builder</jv>.getParsers().add(<jv>classes</jv>);
* </p>
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Parsers on child override those on parent class.
* <li>{@link org.apache.juneau.parser.ParserSet.Inherit} class can be used to inherit and augment values from parent.
* <li>{@link org.apache.juneau.parser.ParserSet.NoInherit} class can be used to suppress inheriting from parent.
* <li>Parsers on methods take precedence over those on classes.
* </ul>
*
* <ul class='seealso'>
* <li class='link'>{@doc jrs.Marshalling}
* </ul>
*
* @return The annotation value.
*/
Class<?>[] parsers() default {};
/**
* HTTP part parser.
*
* <p>
* Specifies the {@link HttpPartParser} to use for parsing headers, query/form parameters, and URI parts.
*
* @return The annotation value.
*/
Class<? extends HttpPartParser> partParser() default HttpPartParser.Void.class;
/**
* HTTP part serializer.
*
* <p>
* Specifies the {@link HttpPartSerializer} to use for serializing headers, query/form parameters, and URI parts.
*
* @return The annotation value.
*/
Class<? extends HttpPartSerializer> partSerializer() default HttpPartSerializer.Void.class;
/**
* Resource path.
*
* <p>
* Used in the following situations:
* <ul class='spaced-list'>
* <li>
* On child resources (resource classes attached to parents via the {@link #children()} annotation) to identify
* the subpath used to access the child resource relative to the parent.
* <li>
* On top-level {@link RestServlet} classes deployed as Spring beans when <c>JuneauRestInitializer</c> is being used.
* </ul>
*
* <h5 class='topic'>On child resources</h5>
* <p>
* The typical usage is to define a path to a child resource relative to the parent resource.
*
* <h5 class='figure'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* children={ChildResource.<jk>class</jk>}
* )
* <jk>public class</jk> TopLevelResource <jk>extends</jk> BasicRestServlet <jk>implements</jk> BasicUniversalConfig {...}
*
* <ja>@Rest</ja>(
* path=<js>"/child"</js>,
* children={GrandchildResource.<jk>class</jk>}
* )
* <jk>public class</jk> ChildResource {...}
*
* <ja>@Rest</ja>(
* path=<js>"/grandchild"</js>
* )
* <jk>public class</jk> GrandchildResource {
* <ja>@RestGet</ja>(<js>"/"</js>)
* <jk>public</jk> String sayHello() {
* <jk>return</jk> <js>"Hello!"</js>;
* }
* }
* </p>
* <p>
* In the example above, assuming the <c>TopLevelResource</c> servlet is deployed to path <c>/myContext/myServlet</c>,
* then the <c>sayHello</c> method is accessible through the URI <c>/myContext/myServlet/child/grandchild</c>.
*
* <p>
* Note that in this scenario, the <c>path</c> attribute is not defined on the top-level resource.
* Specifying the path on the top-level resource has no effect, but can be used for readability purposes.
*
* <h5 class='topic'>Path variables</h5>
* <p>
* The path can contain variables that get resolved to {@link org.apache.juneau.http.annotation.Path @Path} parameters
* or access through the {@link RestRequest#getPathParams()} method.
*
* <h5 class='figure'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* path=<js>"/myResource/{foo}/{bar}"</js>
* )
* <jk>public class</jk> MyResource <jk>extends</jk> BasicRestServlet <jk>implements</jk> BasicUniversalConfig {
*
* <ja>@RestGet</ja>(<js>"/{baz}"</js>)
* <jk>public void</jk> String doX(<ja>@Path</ja> String <jv>foo</jv>, <ja>@Path</ja> <jk>int</jk> <jv>bar</jv>, <ja>@Path</ja> MyPojo <jv>baz</jv>) {
* ...
* }
* }
* </p>
*
* <p>
* Variables can be used on either top-level or child resources and can be defined on multiple levels.
*
* <p>
* All variables in the path must be specified or else the target will not resolve and a <c>404</c> will result.
*
* <p>
* When variables are used on a path of a top-level resource deployed as a Spring bean in a Spring Boot application,
* the first part of the URL must be a literal which will be used as the servlet path of the registered servlet.
*
* <ul class='notes'>
* <li class='note'>
* The leading slash is optional. <js>"/myResource"</js> and <js>"myResource"</js> is equivalent.
* <li class='note'>
* The paths <js>"/myResource"</js> and <js>"/myResource/*"</js> are equivalent.
* <li class='note'>
* Paths must not end with <js>"/"</js> (per the servlet spec).
* </ul>
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Path is searched for in child-to-parent order.
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#path(String)}
* </ul>
*
* @return The annotation value.
*/
String path() default "";
/**
* Supported accept media types.
*
* <p>
* Overrides the media types inferred from the serializers that identify what media types can be produced by the resource.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#produces(MediaType...)}
* </ul>
*
* @return The annotation value.
*/
String[] produces() default {};
/**
* Render response stack traces in responses.
*
* <p>
* Render stack traces in HTTP response bodies when errors occur.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* @return The annotation value.
*/
String renderResponseStackTraces() default "";
/**
* Response processors.
*
* <p>
* Specifies a list of {@link ResponseProcessor} classes that know how to convert POJOs returned by REST methods or
* set via {@link RestResponse#setContent(Object)} into appropriate HTTP responses.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#responseProcessors()}
* </ul>
*
* @return The annotation value.
*/
Class<? extends ResponseProcessor>[] responseProcessors() default {};
/**
* REST children class.
*
* <p>
* Allows you to extend the {@link RestChildren} class to modify how any of the methods are implemented.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#restChildrenClass(Class)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestChildren> restChildrenClass() default RestChildren.Void.class;
/**
* REST methods class.
*
* <p>
* Allows you to extend the {@link RestOperations} class to modify how any of the methods are implemented.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#restOperationsClass(Class)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestOperations> restOperationsClass() default RestOperations.Void.class;
/**
* Allows you to extend the {@link RestOpContext} class to modify how any of the methods are implemented.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#restOpContextClass(Class)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestOpContext> restOpContextClass() default RestOpContext.Void.class;
/**
* Java REST operation method parameter resolvers.
*
* <p>
* By default, the Juneau framework will automatically Java method parameters of various types (e.g.
* <c>RestRequest</c>, <c>Accept</c>, <c>Reader</c>).
* <br>This setting allows you to provide your own resolvers for your own class types that you want resolved.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#restOpArgs(Class...)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends RestOpArg>[] restOpArgs() default {};
/**
* Role guard.
*
* <p>
* An expression defining if a user with the specified roles are allowed to access methods on this class.
*
* <p>
* This is a shortcut for specifying {@link RestOp#roleGuard()} on all the REST operations on a class.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* path=<js>"/foo"</js>,
* roleGuard=<js>"ROLE_ADMIN || (ROLE_READ_WRITE &amp;&amp; ROLE_SPECIAL)"</js>
* )
* <jk>public class</jk> MyResource <jk>extends</jk> BasicRestServlet <jk>implements</jk> BasicUniversalConfig {
* ...
* }
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports any of the following expression constructs:
* <ul>
* <li><js>"foo"</js> - Single arguments.
* <li><js>"foo,bar,baz"</js> - Multiple OR'ed arguments.
* <li><js>"foo | bar | baz"</js> - Multiple OR'ed arguments, pipe syntax.
* <li><js>"foo || bar || baz"</js> - Multiple OR'ed arguments, Java-OR syntax.
* <li><js>"fo*"</js> - Patterns including <js>'*'</js> and <js>'?'</js>.
* <li><js>"fo* &amp; *oo"</js> - Multiple AND'ed arguments, ampersand syntax.
* <li><js>"fo* &amp;&amp; *oo"</js> - Multiple AND'ed arguments, Java-AND syntax.
* <li><js>"fo* || (*oo || bar)"</js> - Parenthesis.
* </ul>
* <li>
* AND operations take precedence over OR operations (as expected).
* <li>
* Whitespace is ignored.
* <li>
* <jk>null</jk> or empty expressions always match as <jk>false</jk>.
* <li>
* If patterns are used, you must specify the list of declared roles using {@link #rolesDeclared()} or {@link org.apache.juneau.rest.RestOpContext.Builder#rolesDeclared(String...)}.
* <li>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#roleGuard(String)}
* </ul>
*
* @return The annotation value.
*/
String roleGuard() default "";
/**
* Declared roles.
*
* <p>
* A comma-delimited list of all possible user roles.
*
* <p>
* Used in conjunction with {@link #roleGuard()} is used with patterns.
*
* <p>
* This is a shortcut for specifying {@link RestOp#rolesDeclared()} on all the REST operations on a class.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* rolesDeclared=<js>"ROLE_ADMIN,ROLE_READ_WRITE,ROLE_READ_ONLY,ROLE_SPECIAL"</js>,
* roleGuard=<js>"ROLE_ADMIN || (ROLE_READ_WRITE &amp;&amp; ROLE_SPECIAL)"</js>
* )
* <jk>public class</jk> MyResource <jk>extends</jk> BasicRestServlet <jk>implements</jk> BasicUniversalConfig {
* ...
* }
* </p>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestOpContext.Builder#rolesDeclared(String...)}
* </ul>
*
* @return The annotation value.
*/
String rolesDeclared() default "";
/**
* Specifies the serializers for POJOs into HTTP response bodies.
*
* <p>
* Serializer are used to convert POJOs to HTTP response bodies.
* <br>Any of the Juneau framework serializers can be used in this setting.
* <br>The serializer selected is based on the request <c>Accept</c> header matched against the values returned by the following method
* using a best-match algorithm:
* <ul class='javatree'>
* <li class='jm'>{@link Serializer#getMediaTypeRanges()}
* </ul>
*
* <p>
* Serializers are automatically inherited from {@link Rest#serializers()} annotations on parent classes with the serializers on child classes
* prepended to the serializer group.
* The {@link org.apache.juneau.serializer.SerializerSet.NoInherit} class can be used to prevent inheriting from the parent class.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <jc>// Define a REST resource that can produce JSON and XML.</jc>
* <ja>@Rest</ja>(
* serializers={
* JsonParser.<jk>class</jk>,
* XmlParser.<jk>class</jk>
* }
* )
* <jk>public class</jk> MyResource {
* ...
* }
* </p>
*
* <p>
* The serializers can also be tailored at the method level using {@link RestOp#serializers()} (and related annotations).
*
* <p>
* The programmatic equivalent to this annotation is:
* <p class='bjava'>
* RestContext.Builder <jv>builder</jv> = RestContext.<jsm>create</jsm>(<jv>resource</jv>);
* <jv>builder</jv>.getSerializers().add(<jv>classes</jv>);
* </p>
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Serializers on child override those on parent class.
* <li>{@link org.apache.juneau.serializer.SerializerSet.Inherit} class can be used to inherit and augment values from parent.
* <li>{@link org.apache.juneau.serializer.SerializerSet.NoInherit} class can be used to suppress inheriting from parent.
* <li>Serializers on methods take precedence over those on classes.
* </ul>
*
* <ul class='seealso'>
* <li class='link'>{@doc jrs.Marshalling}
* </ul>
*
* @return The annotation value.
*/
Class<? extends Serializer>[] serializers() default {};
/**
* Optional site name.
*
* <p>
* The site name is intended to be a title that can be applied to the entire site.
*
* <p>
* One possible use is if you want to add the same title to the top of all pages by defining a header on a
* common parent class like so:
* <p class='bjava'>
* <ja>@HtmlDocConfig</ja>(
* header={
* <js>"&lt;h1&gt;$RS{siteName}&lt;/h1&gt;"</js>,
* <js>"&lt;h2&gt;$RS{title}&lt;/h2&gt;"</js>
* }
* )
* </p>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* @return The annotation value.
*/
String siteName() default "";
/**
* Static files.
*
* <p>
* Used to retrieve localized files to be served up as static files through the REST API via the following
* predefined methods:
* <ul class='javatree'>
* <li class='jm'>{@link BasicRestObject#getHtdoc(String, Locale)}.
* <li class='jm'>{@link BasicRestServlet#getHtdoc(String, Locale)}.
* </ul>
*
* <p>
* The static file finder can be accessed through the following methods:
* <ul class='javatree'>
* <li class='jm'>{@link RestContext#getStaticFiles()}
* <li class='jm'>{@link RestRequest#getStaticFiles()}
* </ul>
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Static files on child are combined with those on parent class.
* <li>Static files are are executed child-to-parent in the order they appear in the annotation.
* </ul>
*
* @return The annotation value.
*/
Class<? extends StaticFiles> staticFiles() default StaticFiles.Void.class;
/**
* Provides swagger-specific metadata on this resource.
*
* <p>
* Used to populate the auto-generated OPTIONS swagger documentation.
*
* <h5 class='section'>Example:</h5>
* <p class='bjava'>
* <ja>@Rest</ja>(
* path=<js>"/addressBook"</js>,
*
* <jc>// Swagger info.</jc>
* swagger=@Swagger({
* <js>"contact:{name:'John Smith',email:'john@smith.com'},"</js>,
* <js>"license:{name:'Apache 2.0',url:'http://www.apache.org/licenses/LICENSE-2.0.html'},"</js>,
* <js>"version:'2.0',</js>,
* <js>"termsOfService:'You are on your own.',"</js>,
* <js>"tags:[{name:'Java',description:'Java utility',externalDocs:{description:'Home page',url:'http://juneau.apache.org'}}],"</js>,
* <js>"externalDocs:{description:'Home page',url:'http://juneau.apache.org'}"</js>
* })
* )
* </p>
*
* <ul class='seealso'>
* <li class='ja'>{@link Swagger}
* </ul>
*
* @return The annotation value.
*/
Swagger swagger() default @Swagger;
/**
* Swagger provider.
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#swaggerProvider(Class)}
* </ul>
*
* @return The annotation value.
*/
Class<? extends SwaggerProvider> swaggerProvider() default SwaggerProvider.Void.class;
/**
* Optional servlet title.
*
* <p>
* It is used to populate the Swagger title field.
*
* <h5 class='section'>Inheritance Rules</h5>
* <ul>
* <li>Label is searched for in child-to-parent order.
* </ul>
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* <li class='note'>
* Corresponds to the swagger field <c>/info/title</c>.
* </ul>
*
* @return The annotation value.
*/
String[] title() default {};
/**
* Resource authority path.
*
* <p>
* Overrides the authority path value for this resource and any child resources.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#uriAuthority(String)}
* </ul>
*
* @return The annotation value.
*/
String uriAuthority() default "";
/**
* Resource context path.
*
* <p>
* Overrides the context path value for this resource and any child resources.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#uriContext(String)}
* </ul>
*
* @return The annotation value.
*/
String uriContext() default "";
/**
* URI-resolution relativity.
*
* <p>
* Specifies how relative URIs should be interpreted by serializers.
*
* <p>
* See {@link UriResolution} for possible values.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#uriRelativity(UriRelativity)}
* </ul>
*
* @return The annotation value.
*/
String uriRelativity() default "";
/**
* URI-resolution.
*
* <p>
* Specifies how relative URIs should be interpreted by serializers.
*
* <p>
* See {@link UriResolution} for possible values.
*
* <ul class='notes'>
* <li class='note'>
* Supports {@doc jrs.SvlVariables}
* (e.g. <js>"$L{my.localized.variable}"</js>).
* </ul>
*
* <ul class='seealso'>
* <li class='jm'>{@link org.apache.juneau.rest.RestContext.Builder#uriResolution(UriResolution)}
* </ul>
*
* @return The annotation value.
*/
String uriResolution() default "";
}