public interface ForgotPasswordSecurityToken extends Serializable
| Modifier and Type | Method and Description |
|---|---|
Long |
getAdminUserId()
Return the userId that this token was created for.
|
Date |
getCreateDate()
Date the token was created
|
String |
getToken()
Returns the security token.
|
Date |
getTokenUsedDate()
Date the token was used to reset the password.
|
boolean |
isTokenUsedFlag()
Returns true if the token has already been used.
|
void |
setAdminUserId(Long adminUserId)
Store the userId that this token is associated with.
|
void |
setCreateDate(Date date)
Set the generation date for the token.
|
void |
setToken(String token)
Sets the security token.
|
void |
setTokenUsedDate(Date date)
Set the date the token was used to reset the password.
|
void |
setTokenUsedFlag(boolean tokenUsed)
Sets the token used flag.
|
String getToken()
void setToken(String token)
Date getCreateDate()
void setCreateDate(Date date)
Date getTokenUsedDate()
void setTokenUsedDate(Date date)
Long getAdminUserId()
void setAdminUserId(Long adminUserId)
boolean isTokenUsedFlag()
void setTokenUsedFlag(boolean tokenUsed)
Copyright © 2015. All rights reserved.