WebMan: A Basic RefEntry Servlet | ||
---|---|---|
<<< Previous | Next >>> |
public class RefEntryServlet {RefEntryServlet();public void destroy();public String getServletInfo();public void init(ServletConfig config) throws ServletException;public void doGet(HttpServletRequest req, HttpServletResponse res);public void doPost(HttpServletRequest req, HttpServletResponse res);}
RefEntryServlet responds to the client searches for RefEntry documents. Its init method loads the RefEntryBackEnd instance for the servlet so that searches can be handled. Its doGet method handles client requests. The doPost method calls doGet.
RefEntryServlet class "friendly" (package private) methods provide the standard interface.
Does nothing.
Return a String of basic information about the servlet.
Reads the serialized backend from the disk and readies tools to handle the searches.
Handles client requests coming in over HTTP.
Calls doGet.
<<< Previous | Home | Next >>> |
RefEntryIndex | Up | RefEntryTransformer |