javax.servlet
Interface Servlet

All Known Implementing Classes:
ErrorServlet, GenericServlet, HttpServlet, InvokerServlet, StaticResourceServlet

public interface Servlet

Basic servlet interface

Author:
Rick Knowles

Method Summary
 void destroy()
           
 ServletConfig getServletConfig()
           
 java.lang.String getServletInfo()
           
 void init(ServletConfig config)
           
 void service(ServletRequest req, ServletResponse res)
           
 

Method Detail

destroy

void destroy()

getServletConfig

ServletConfig getServletConfig()

getServletInfo

java.lang.String getServletInfo()

init

void init(ServletConfig config)
          throws ServletException
Throws:
ServletException

service

void service(ServletRequest req,
             ServletResponse res)
             throws java.io.IOException,
                    ServletException
Throws:
java.io.IOException
ServletException


Copyright © 2013. All Rights Reserved.