# Conflicts: # src/core/process/Process.javawlf
parent
62759d6b34
commit
86fbf1db1b
@ -0,0 +1,17 @@
|
||||
package servlet.basic_settings;
|
||||
|
||||
import javax.servlet.*;
|
||||
import java.io.IOException;
|
||||
|
||||
public class S_Filter implements Filter {
|
||||
|
||||
public void init(FilterConfig filterConfig) throws ServletException {
|
||||
|
||||
}
|
||||
public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {
|
||||
|
||||
}
|
||||
public void destory(){
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in new issue