Package org.apache.ofbiz.webapp.control
Class ContextFilter
- java.lang.Object
-
- org.apache.ofbiz.webapp.control.ContextFilter
-
-
Field Summary
Fields Modifier and Type Field Description protected FilterConfig
config
-
Constructor Summary
Constructors Constructor Description ContextFilter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
destroy()
void
doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
void
init(FilterConfig config)
-
-
-
Field Detail
-
config
protected FilterConfig config
-
-
Method Detail
-
init
public void init(FilterConfig config) throws ServletException
- Specified by:
init
in interfaceFilter
- Throws:
ServletException
- See Also:
Filter.init(javax.servlet.FilterConfig)
-
doFilter
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws java.io.IOException, ServletException
- Specified by:
doFilter
in interfaceFilter
- Throws:
java.io.IOException
ServletException
- See Also:
Filter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
-
destroy
public void destroy()
- Specified by:
destroy
in interfaceFilter
- See Also:
Filter.destroy()
-
-