blob: d90d97cea14669b6dd964cd4b18bf13d9bccd9d6 [file] [log] [blame]
<%@ jet package="org.eclipse.jst.j2ee.web"
imports="java.util.* org.eclipse.jst.j2ee.internal.common.operations.* org.eclipse.jst.j2ee.internal.web.operations.*"
class="FilterTemplate"
%>
<% CreateFilterTemplateModel model = (CreateFilterTemplateModel) argument; %>
<%@ include file="_flags.template" %>
<%@ include file="_package.template" %>
<%@ include file="_imports.template" %>
<%@ include file="filter_classHeader.template" %>
<%@ include file="_class.template" %>
<%@ include file="_constructors.template" %>
<%@ include file="_methods.template" %>
<% if (model.shouldGenDestroy()) { %>
/**
* @see Filter#destroy()
*/
public void destroy() {
// TODO Auto-generated method stub
}
<% } %>
<% if (model.shouldGenDoFilter()) { %>
/**
* @see Filter#doFilter(ServletRequest, ServletResponse, FilterChain)
*/
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
// TODO Auto-generated method stub
}
<% } %>
<% if (model.shouldGenInit()) { %>
/**
* @see Filter#init(FilterConfig)
*/
public void init(FilterConfig fConfig) throws ServletException {
// TODO Auto-generated method stub
}
<% } %>
}