16 lines
360 B
Java
16 lines
360 B
Java
package javax.servlet;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface Servlet {
|
|
void destroy();
|
|
|
|
ServletConfig getServletConfig();
|
|
|
|
String getServletInfo();
|
|
|
|
void init(ServletConfig servletConfig) throws ServletException;
|
|
|
|
void service(ServletRequest servletRequest, ServletResponse servletResponse) throws ServletException, IOException;
|
|
}
|