1 17 18 package javax.servlet; 19 20 import java.io.IOException ; 21 22 23 59 60 61 public interface Servlet { 62 63 92 93 public void init(ServletConfig config) throws ServletException ; 94 95 96 97 115 116 public ServletConfig getServletConfig(); 117 118 119 120 153 154 public void service(ServletRequest req, ServletResponse res) 155 throws ServletException , IOException ; 156 157 158 159 170 171 public String getServletInfo(); 172 173 174 175 191 192 public void destroy(); 193 } 194 | Popular Tags |