Package com.avoka.fc.core.servlet
Class JsAppRenderServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- com.avoka.fc.core.servlet.JsAppRenderServlet
-
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
public class JsAppRenderServlet extends HttpServlet
Provides the JS App form rendering servlet.- Since:
- 18.11.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
SECURE_SERVLET_URL_HTML
The HTML form secure servlet mounted URLstatic String
SERVLET_URL_HTML
The HTML form servlet mounted URL
-
Constructor Summary
Constructors Constructor Description JsAppRenderServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
doGet(HttpServletRequest request, HttpServletResponse response)
Handle a JS App form render request.-
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service, service
-
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
-
-
-
Field Detail
-
SERVLET_URL_HTML
public static final String SERVLET_URL_HTML
The HTML form servlet mounted URL- See Also:
- Constant Field Values
-
SECURE_SERVLET_URL_HTML
public static final String SECURE_SERVLET_URL_HTML
The HTML form secure servlet mounted URL- See Also:
- Constant Field Values
-
-
Method Detail
-
doGet
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
Handle a JS App form render request.- Overrides:
doGet
in classHttpServlet
- Parameters:
request
- the servlet requestresponse
- the servlet response- Throws:
ServletException
- if a servlet exception occursIOException
- if an IO exception occurs
-
-