Interface UserValidationSettings
-
- All Known Implementing Classes:
DefaultUserValidationSettings
public interface UserValidationSettings
UserValidationSettings- Author:
- Joakim Erdfelt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEmailSubject()Get the subject line for the validation email.intgetEmailValidationTimeout()Gets the number of minutes until the email validation message key should expire.booleanisEmailValidationRequired()Get the flag indicating if a new users require email validation or not.
-
-
-
Method Detail
-
isEmailValidationRequired
boolean isEmailValidationRequired()
Get the flag indicating if a new users require email validation or not.- Returns:
-
getEmailValidationTimeout
int getEmailValidationTimeout()
Gets the number of minutes until the email validation message key should expire.- Returns:
- the email validation timeout (in minutes).
-
getEmailSubject
String getEmailSubject()
Get the subject line for the validation email.- Returns:
- the subject line for the validation email.
-
-