Package org.apereo.cas.authentication
Interface RememberMeCredential
-
- All Superinterfaces:
Credential,java.io.Serializable
public interface RememberMeCredential extends Credential
Credential that wish to handle remember me scenarios need to implement this class.- Since:
- 3.2.1
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringAUTHENTICATION_ATTRIBUTE_REMEMBER_MEAuthentication attribute name for remember-me.static java.lang.StringREQUEST_PARAMETER_REMEMBER_MERequest parameter name.-
Fields inherited from interface org.apereo.cas.authentication.Credential
CREDENTIAL_TYPE_ATTRIBUTE, UNKNOWN_ID
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisRememberMe()Checks if remember-me is enabled.voidsetRememberMe(boolean rememberMe)Sets the remember me.-
Methods inherited from interface org.apereo.cas.authentication.Credential
getId
-
-
-
-
Field Detail
-
AUTHENTICATION_ATTRIBUTE_REMEMBER_ME
static final java.lang.String AUTHENTICATION_ATTRIBUTE_REMEMBER_ME
Authentication attribute name for remember-me.- See Also:
- Constant Field Values
-
REQUEST_PARAMETER_REMEMBER_ME
static final java.lang.String REQUEST_PARAMETER_REMEMBER_ME
Request parameter name.- See Also:
- Constant Field Values
-
-