Modifier and Type | Method and Description |
---|---|
void |
InterceptorStack.add(java.lang.Class<? extends Interceptor> interceptor)
Adds this interceptor at the end of the stack.
|
void |
DefaultInterceptorStack.add(java.lang.Class<? extends Interceptor> type) |
void |
InterceptorStack.addAsNext(java.lang.Class<? extends Interceptor> interceptor)
Deprecated.
|
void |
DefaultInterceptorStack.addAsNext(java.lang.Class<? extends Interceptor> type) |
InterceptorHandler |
DefaultInterceptorHandlerFactory.handlerFor(java.lang.Class<? extends Interceptor> type) |
InterceptorHandler |
InterceptorHandlerFactory.handlerFor(java.lang.Class<? extends Interceptor> type)
chooses the right handler for the given type
|
Constructor and Description |
---|
ToInstantiateInterceptorHandler(Container container,
java.lang.Class<? extends Interceptor> type) |
Modifier and Type | Class and Description |
---|---|
class |
DeserializingInterceptor
Important: this interceptor must be after the
ParametersInstantiatorInterceptor |
class |
ExceptionHandlerInterceptor
Intercept all requests to handling uncaught exceptions.
|
class |
ExecuteMethodInterceptor
Interceptor that executes the logic method.
|
class |
FlashInterceptor
Interceptor that handles flash scope.
|
class |
ForwardToDefaultViewInterceptor
Intercepts the request and forwards to the default view if no view was
rendered so far.
|
class |
InstantiateInterceptor
Using a request scoped container, instantiates a resource.
Only instantiates the resource if it has not been instantiated so far, thus allowing composition of another component instantiator and this one. |
class |
OutjectResult
Outjects the result of the method invocation to the desired result
|
class |
ParametersInstantiatorInterceptor
An interceptor which instantiates parameters and provide them to the stack.
|
class |
ResourceLookupInterceptor
Looks up the resource for a specific request and delegates for the 404
component if unable to find it.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<java.lang.Class<? extends Interceptor>> |
DefaultInterceptorRegistry.all() |
java.util.List<java.lang.Class<? extends Interceptor>> |
TopologicalSortedInterceptorRegistry.all() |
java.util.List<java.lang.Class<? extends Interceptor>> |
InterceptorRegistry.all() |
Modifier and Type | Class and Description |
---|---|
class |
DownloadInterceptor
Intercepts methods whom return a File or an InputStream.
|
Modifier and Type | Interface and Description |
---|---|
interface |
MultipartInterceptor
An interceptor which handles multipart requests.
|
Modifier and Type | Class and Description |
---|---|
class |
CommonsUploadMultipartInterceptor
A multipart interceptor based on Apache Commons Upload.
|
class |
NullMultipartInterceptor
A null implementation of
MultipartInterceptor . |
class |
Servlet3MultipartInterceptor
A multipart interceptor based on Servlet3 File Upload.
|
Modifier and Type | Class and Description |
---|---|
class |
ResourceControllerInterceptor<T extends HypermediaResource>
Intercepts invocations to state control's intercepted controllers.
|
Modifier and Type | Method and Description |
---|---|
static com.google.common.base.Predicate<Interceptor> |
Filters.accepts(ResourceMethod method) |
Modifier and Type | Class and Description |
---|---|
class |
MethodValidatorInterceptor
Validate method parameters using Hibernate Validator.
|
Copyright © 2013 Caelum. All Rights Reserved.