| javax.servlet.http.HttpServlet org.itsnat.core.http.HttpServletWrapper
HttpServletWrapper | abstract public class HttpServletWrapper extends HttpServlet (Code) | | Simplifies the development of new ItsNat based servlets.
New servlets may inherit from this class and overload
HttpServletWrapper.init(javax.servlet.ServletConfig config)
to setup the ItsNat infrastructure (default properties, register templates etc).
This class creates an ItsNat servlet wrapping this servlet and forwards
request/response calls to the ItsNat servlet, these are converted to ItsNat
request/response calls.
author: Jose Maria Arranz Santamaria |
HttpServletWrapper | public HttpServletWrapper()(Code) | | Creates a new instance of HttpServletWrapper
|
getServletInfo | public String getServletInfo()(Code) | | Returns a short description of the servlet.
|
init | public void init(ServletConfig config) throws ServletException(Code) | | Initializes the ItsNat servlet wrapping this servlet. Overload this method
to initialize the ItsNat servlet (setup properties, register templates etc).
|
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|