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
public class EmailVerificationServlet extends BaseServlet
Processes email verification responses from users and redirects them to the Account Pending page.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
SERVLET_URL
The servlet mounted urlstatic String
VERIFICATION_KEY_PARAM
The "verificationKey" request parameter-
Fields inherited from class com.avoka.fc.core.servlet.BaseServlet
PAGE_InvalidRequest, PAGE_Offline
-
-
Constructor Summary
Constructors Constructor Description EmailVerificationServlet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
executeRequest(HttpServletRequest request, HttpServletResponse response)
Abstract execute request method subclasses must implement.protected ErrorLogService
getErrorLogService()
-
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, 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 Detail
-
SERVLET_URL
public static final String SERVLET_URL
The servlet mounted url- See Also:
- Constant Field Values
-
VERIFICATION_KEY_PARAM
public static final String VERIFICATION_KEY_PARAM
The "verificationKey" request parameter- See Also:
- Constant Field Values
-
-
Method Detail
-
getErrorLogService
protected ErrorLogService getErrorLogService()
- Specified by:
getErrorLogService
in classBaseServlet
- Returns:
- the servlet error log service
- Since:
- 4.3.4
-
executeRequest
protected void executeRequest(HttpServletRequest request, HttpServletResponse response)
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
-
-