RefEntryServlet

Name

RefEntryServlet -- servlet class for webman client

Synopsis

 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);
}

Description

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.

Parameters

The RefEntryServlet constructor takes no parameters.

Methods

RefEntryServlet class "friendly" (package private) methods provide the standard interface.

destroy

Does nothing.

getServletInfo

Return a String of basic information about the servlet.

init

Reads the serialized backend from the disk and readies tools to handle the searches.

doGet

Handles client requests coming in over HTTP.

doPost

Calls doGet.