Package org.apache.sling.auth.core.spi
Class AbstractAuthenticationFormServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- org.apache.sling.auth.core.spi.AbstractAuthenticationFormServlet
-
- All Implemented Interfaces:
java.io.Serializable
,Servlet
,ServletConfig
public abstract class AbstractAuthenticationFormServlet extends HttpServlet
TheAbstractAuthenticationFormServlet
provides a basic implementation of a simple servlet to render a login form for authentication purposes.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CUSTOM_FORM_PATH
The path to the custom login form.static java.lang.String
DEFAULT_FORM_PATH
The path to the default login form.
-
Constructor Summary
Constructors Constructor Description AbstractAuthenticationFormServlet()
-
Method Summary
-
Methods inherited from class javax.servlet.http.HttpServlet
service
-
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, init, log, log
-
-
-
-
Field Detail
-
DEFAULT_FORM_PATH
public static final java.lang.String DEFAULT_FORM_PATH
The path to the default login form.- See Also:
getDefaultFormPath()
, Constant Field Values
-
CUSTOM_FORM_PATH
public static final java.lang.String CUSTOM_FORM_PATH
The path to the custom login form.- See Also:
getCustomFormPath()
, Constant Field Values
-
-