1 /*
2 * joey-sample1 and its relative products are published under the terms
3 * of the Apache Software License.
4 *
5 * Created on 2004/12/08 8:37:42
6 */
7 package org.asyrinx.joey.hibernate.seasar.filter;
8
9 import java.io.IOException;
10
11 import javax.servlet.FilterChain;
12 import javax.servlet.ServletException;
13 import javax.servlet.ServletRequest;
14 import javax.servlet.ServletResponse;
15
16 /***
17 * @author takeshi
18 */
19 public interface RequestFilterChainTx {
20 public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException,
21 ServletException;
22
23 }