Package com.avoka.fc.core.servlet
Class EmailVerificationServlet
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.avoka.fc.core.servlet.BaseServlet
com.avoka.fc.core.servlet.EmailVerificationServlet
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
Processes email verification responses from users and redirects them to the Account Pending page.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The servlet mounted urlstatic final String
The "verificationKey" request parameterFields inherited from class com.avoka.fc.core.servlet.BaseServlet
PAGE_InvalidRequest, PAGE_Offline
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
executeRequest
(HttpServletRequest request, HttpServletResponse response) Abstract execute request method subclasses must implement.protected ErrorLogService
Methods inherited from class com.avoka.fc.core.servlet.BaseServlet
doGet, doPost, getDataContext, getDeploymentPropertyDao, getErrorPagePath, getLogger, getMultiPartRequestMap, getParameterString, getParameterString, getParameterStringTrim, getRequest, getRequestParameters, getResponse, handleException, handleRequest, hasPermission, hasPermission, hasPermission, listServletInfo, sendRedirect, sendResponseError
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
Field Details
-
SERVLET_URL
The servlet mounted url- See Also:
-
VERIFICATION_KEY_PARAM
The "verificationKey" request parameter- See Also:
-
-
Constructor Details
-
EmailVerificationServlet
public EmailVerificationServlet()
-
-
Method Details
-
getErrorLogService
- Specified by:
getErrorLogService
in classBaseServlet
- Returns:
- the servlet error log service
- Since:
- 4.3.4
-
executeRequest
Description copied from class:BaseServlet
Abstract execute request method subclasses must implement. Subclasses should not override the doGet or doPost methods.- Specified by:
executeRequest
in classBaseServlet
- Parameters:
request
- the servlet requestresponse
- the servlet response
-