Class ConversationPropagationFilter
- java.lang.Object
-
- org.jboss.weld.module.jsf.servlet.ConversationPropagationFilter
-
- All Implemented Interfaces:
javax.servlet.Filter
@Deprecated public class ConversationPropagationFilter extends Object implements javax.servlet.Filter
Deprecated.See also WELD-1262 and JBPAPP6-1664A Filter for handling conversation propagation over redirects.
This filter intercepts the call to
HttpServletResponse.sendRedirect(String)and appends the conversation id request parameter to the URL if the conversation is long-running, but only if the request parameter is not already present.- Author:
- Nicklas Karlsson
-
-
Constructor Summary
Constructors Constructor Description ConversationPropagationFilter()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddestroy()Deprecated.voiddoFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain)Deprecated.voidinit(javax.servlet.FilterConfig config)Deprecated.
-
-
-
Method Detail
-
init
public void init(javax.servlet.FilterConfig config) throws javax.servlet.ServletExceptionDeprecated.- Specified by:
initin interfacejavax.servlet.Filter- Throws:
javax.servlet.ServletException
-
doFilter
public void doFilter(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, javax.servlet.FilterChain chain) throws IOException, javax.servlet.ServletExceptionDeprecated.- Specified by:
doFilterin interfacejavax.servlet.Filter- Throws:
IOExceptionjavax.servlet.ServletException
-
destroy
public void destroy()
Deprecated.- Specified by:
destroyin interfacejavax.servlet.Filter
-
-