|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.servlet.HandlerExecutionChain
Handler execution chain, consisting of handler object and any preprocessing interceptors. Returned by HandlerMapping's getHandler method.
HandlerMapping.getHandler(javax.servlet.http.HttpServletRequest)
,
HandlerInterceptor
Constructor Summary | |
HandlerExecutionChain(Object handler)
Create new HandlerExecutionChain. |
|
HandlerExecutionChain(Object handler,
HandlerInterceptor[] interceptors)
Create new HandlerExecutionChain. |
Method Summary | |
Object |
getHandler()
Return the handler object to execute. |
HandlerInterceptor[] |
getInterceptors()
Return the array of interceptors to apply (in the given order) before the handler itself executes. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public HandlerExecutionChain(Object handler)
handler
- the handler object to executepublic HandlerExecutionChain(Object handler, HandlerInterceptor[] interceptors)
handler
- the handler object to executeinterceptors
- the array of interceptors to apply
(in the given order) before the handler itself executesMethod Detail |
public Object getHandler()
public HandlerInterceptor[] getInterceptors()
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |