Package | Description |
---|---|
org.springframework.web.portlet |
Provides JSR-168 portlets that integrate with the application context
infrastructure, and the core interfaces and classes for the Portlet
variant of Spring's web MVC framework.
|
org.springframework.web.portlet.handler |
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
|
Modifier and Type | Method and Description |
---|---|
HandlerInterceptor[] |
HandlerExecutionChain.getInterceptors()
Return the array of interceptors to apply (in the given order).
|
Modifier and Type | Method and Description |
---|---|
void |
HandlerExecutionChain.addInterceptor(HandlerInterceptor interceptor) |
void |
HandlerExecutionChain.addInterceptors(HandlerInterceptor... interceptors) |
Constructor and Description |
---|
HandlerExecutionChain(Object handler,
HandlerInterceptor... interceptors)
Create a new HandlerExecutionChain.
|
Modifier and Type | Class and Description |
---|---|
class |
HandlerInterceptorAdapter
Abstract adapter class for the
HandlerInterceptor interface,
for simplified implementation of pre-only/post-only interceptors. |
class |
ParameterMappingInterceptor
Interceptor to forward a request parameter from the
ActionRequest to the
RenderRequest . |
class |
UserRoleAuthorizationInterceptor
Interceptor that checks the authorization of the current user via the
user's roles, as evaluated by PortletRequest's isUserInRole method.
|
class |
WebRequestHandlerInterceptorAdapter
Adapter that implements the Portlet HandlerInterceptor interface
and wraps an underlying WebRequestInterceptor.
|
Modifier and Type | Method and Description |
---|---|
protected HandlerInterceptor |
AbstractHandlerMapping.adaptInterceptor(Object interceptor)
Adapt the given interceptor object to the HandlerInterceptor interface.
|
protected HandlerInterceptor[] |
AbstractHandlerMapping.getAdaptedInterceptors()
Return the adapted interceptors as HandlerInterceptor array.
|
Copyright © 2015. All rights reserved.