1 16 package org.apache.myfaces.webapp; 17 18 import javax.servlet.*; 19 import java.io.IOException ; 20 21 37 public class DummyServlet 38 implements Servlet 39 { 40 42 private ServletConfig _servletConfig; 43 44 public String getServletInfo() 45 { 46 return "Dummy servlet for testing servlet mappings"; 47 } 48 49 public void init(ServletConfig servletConfig) throws ServletException 50 { 51 _servletConfig = servletConfig; 52 } 53 54 public ServletConfig getServletConfig() 55 { 56 return _servletConfig; 57 } 58 59 public void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, 60 IOException 61 { 62 } 64 65 public void destroy() 66 { 67 } 68 } 69 | Popular Tags |