Package com.aquima.web.webinterceptor
Class AbstractSessionAwareInterceptor
- java.lang.Object
-
- com.aquima.web.session.AbstractSesionAwareRequestHandler
-
- com.aquima.web.webinterceptor.AbstractSessionAwareInterceptor
-
- All Implemented Interfaces:
org.springframework.web.servlet.AsyncHandlerInterceptor
,org.springframework.web.servlet.HandlerInterceptor
- Direct Known Subclasses:
CsrfInterceptor
,RequestWardInterceptor
,SessionListenerInterceptor
public abstract class AbstractSessionAwareInterceptor extends AbstractSesionAwareRequestHandler implements org.springframework.web.servlet.AsyncHandlerInterceptor
Base class for handler interceptors which require access to the AquimaSession for the current request.- Since:
- 11.0
- Author:
- MihaiB
- See Also:
AbstractSesionAwareRequestHandler
-
-
Constructor Summary
Constructors Constructor Description AbstractSessionAwareInterceptor(com.blueriq.component.api.IAquimaSessionsMap sessionManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
preHandle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Object handler)
This implementation always returnstrue
.-
Methods inherited from class com.aquima.web.session.AbstractSesionAwareRequestHandler
extractEffectiveFlushMode, extractSessionId, getSession, getSession, getSessionManager
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
preHandle
public boolean preHandle(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, Object handler) throws Exception
This implementation always returnstrue
.- Specified by:
preHandle
in interfaceorg.springframework.web.servlet.HandlerInterceptor
- Throws:
Exception
-
-