KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > servlet > Servlet

javax.servlet
Interface Servlet

All Known Subinterfaces:
HttpJspPage, JspPage
All Known Implementing Classes:
GenericServlet
See Also:
Top Examples, Source Code, HttpServlet

public void destroy()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public ServletConfig getServletConfig()
See Also:
init(javax.servlet.ServletConfig), GenericServlet
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public String getServletInfo()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void init(ServletConfig config)
          throws ServletException
See Also:
getServletConfig(), UnavailableException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void service(ServletRequest req,
                    ServletResponse res)
             throws ServletException,
                    IOException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags