Package net.i2p.addressbook.servlet
Class Servlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- net.i2p.addressbook.servlet.Servlet
-
- All Implemented Interfaces:
Serializable,Servlet,ServletConfig
public class Servlet extends HttpServlet
A wrapper for addressbook to allow it to be started as a web application. This was a GenericServlet, we make it an HttpServlet solely to provide a simple page to display status.- Since:
- 0.9.30 moved from addressbook to SusiDNS
- Author:
- Ragnarok
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Servlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddestroy()voidinit(ServletConfig config)voidservice(HttpServletRequest request, HttpServletResponse response)Simple output to verify that the addressbook servlet is running.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service
-
Methods inherited from class javax.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
-
-
-
Method Detail
-
service
public void service(HttpServletRequest request, HttpServletResponse response) throws IOException
Simple output to verify that the addressbook servlet is running. (non-Javadoc) see javax.servlet.Servlet#service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)- Overrides:
servicein classHttpServlet- Throws:
IOException
-
init
public void init(ServletConfig config)
- Specified by:
initin interfaceServlet- Overrides:
initin classGenericServlet
-
destroy
public void destroy()
- Specified by:
destroyin interfaceServlet- Overrides:
destroyin classGenericServlet
-
-