| java.lang.Object org.springframework.web.portlet.HandlerExecutionChain
HandlerExecutionChain | public class HandlerExecutionChain (Code) | | Handler execution chain, consisting of handler object and any handler interceptors.
Returned by HandlerMapping's
HandlerMapping.getHandler method.
author: Juergen Hoeller author: John A. Lewis since: 2.0 See Also: HandlerInterceptor |
HandlerExecutionChain | public HandlerExecutionChain(Object handler)(Code) | | Create a new HandlerExecutionChain.
Parameters: handler - the handler object to execute |
HandlerExecutionChain | public HandlerExecutionChain(Object handler, HandlerInterceptor[] interceptors)(Code) | | Create a new HandlerExecutionChain.
Parameters: handler - the handler object to execute Parameters: interceptors - the array of interceptors to apply(in the given order) before the handler itself executes |
getHandler | public Object getHandler()(Code) | | Return the handler object to execute.
the handler object (never null ) |
getInterceptors | public HandlerInterceptor[] getInterceptors()(Code) | | Return the array of interceptors to apply (in the given order).
the array of HandlerInterceptors instances (may be null ) |
|
|