public abstract class HandlerInterceptorAdapter extends Object implements HandlerInterceptor
HandlerInterceptor
interface,
for simplified implementation of pre-only/post-only interceptors.Constructor and Description |
---|
HandlerInterceptorAdapter() |
public boolean preHandleAction(ActionRequest request, ActionResponse response, Object handler) throws Exception
preHandle(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object)
.preHandleAction
in interface HandlerInterceptor
request
- current portlet action requestresponse
- current portlet action responsehandler
- chosen handler to execute, for type and/or instance evaluationtrue
if the execution chain should proceed with the
next interceptor or the handler itself. Else, DispatcherPortlet
assumes that this interceptor has already dealt with the response itselfException
- in case of errorspublic void afterActionCompletion(ActionRequest request, ActionResponse response, Object handler, Exception ex) throws Exception
afterCompletion(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object, java.lang.Exception)
.afterActionCompletion
in interface HandlerInterceptor
request
- current portlet action requestresponse
- current portlet action responsehandler
- chosen handler to execute, for type and/or instance examinationex
- exception thrown on handler execution, if any (only included as
additional context information for the case where a handler threw an exception;
request execution may have failed even when this argument is null
)Exception
- in case of errorspublic boolean preHandleRender(RenderRequest request, RenderResponse response, Object handler) throws Exception
preHandle(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object)
.preHandleRender
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance evaluationtrue
if the execution chain should proceed with the
next interceptor or the handler itself. Else, DispatcherPortlet
assumes that this interceptor has already dealt with the response itselfException
- in case of errorspublic void postHandleRender(RenderRequest request, RenderResponse response, Object handler, ModelAndView modelAndView) throws Exception
postHandleRender
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance examinationmodelAndView
- the ModelAndView
that the handler returned
(can also be null
)Exception
- in case of errorspublic void afterRenderCompletion(RenderRequest request, RenderResponse response, Object handler, Exception ex) throws Exception
afterCompletion(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object, java.lang.Exception)
.afterRenderCompletion
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance examinationex
- exception thrown on handler execution, if anyException
- in case of errorspublic boolean preHandleResource(ResourceRequest request, ResourceResponse response, Object handler) throws Exception
preHandle(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object)
.preHandleResource
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance evaluationtrue
if the execution chain should proceed with the
next interceptor or the handler itself. Else, DispatcherPortlet
assumes that this interceptor has already dealt with the response itselfException
- in case of errorspublic void postHandleResource(ResourceRequest request, ResourceResponse response, Object handler, ModelAndView modelAndView) throws Exception
postHandleResource
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance examinationmodelAndView
- the ModelAndView
that the handler returned
(can also be null
)Exception
- in case of errorspublic void afterResourceCompletion(ResourceRequest request, ResourceResponse response, Object handler, Exception ex) throws Exception
afterCompletion(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object, java.lang.Exception)
.afterResourceCompletion
in interface HandlerInterceptor
request
- current portlet render requestresponse
- current portlet render responsehandler
- chosen handler to execute, for type and/or instance examinationex
- exception thrown on handler execution, if anyException
- in case of errorspublic boolean preHandleEvent(EventRequest request, EventResponse response, Object handler) throws Exception
preHandle(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object)
.preHandleEvent
in interface HandlerInterceptor
request
- current portlet action requestresponse
- current portlet action responsehandler
- chosen handler to execute, for type and/or instance evaluationtrue
if the execution chain should proceed with the
next interceptor or the handler itself. Else, DispatcherPortlet
assumes that this interceptor has already dealt with the response itselfException
- in case of errorspublic void afterEventCompletion(EventRequest request, EventResponse response, Object handler, Exception ex) throws Exception
afterCompletion(javax.portlet.PortletRequest, javax.portlet.PortletResponse, java.lang.Object, java.lang.Exception)
.afterEventCompletion
in interface HandlerInterceptor
request
- current portlet action requestresponse
- current portlet action responsehandler
- chosen handler to execute, for type and/or instance examinationex
- exception thrown on handler execution, if any (only included as
additional context information for the case where a handler threw an exception;
request execution may have failed even when this argument is null
)Exception
- in case of errorsprotected boolean preHandle(PortletRequest request, PortletResponse response, Object handler) throws Exception
This implementation always returns true
.
Exception
protected void afterCompletion(PortletRequest request, PortletResponse response, Object handler, Exception ex) throws Exception
This implementation is empty.
Exception