Uses of Class
com.jk.webstack.services.account.Account
Packages that use Account
-
Uses of Account in com.jk.webstack.services.account
Methods in com.jk.webstack.services.account that return AccountModifier and TypeMethodDescriptionstatic Account
Account.create()
This method creates a newAccount
.AccountServices.createAccount
(String email, String firstname, String lastname, String password) This method create a new user account with the provided details.This method sets the user account email address to the provided value.protected Account
AccountServices.findAccountByEmail
(String email) This method find a user account by its email address.This method sets the user account first name to the provided value.This method sets the user account last name to the provided value.AccountServices.loadDetailsByToken
(String tokenString) This method load user account details based on a token string.AccountServices.loadUserByUsername
(String username) Locates the user based on the user name.AccountServices.resetAccount
(String email) This method reset the user account associated with the given email address.Methods in com.jk.webstack.services.account with parameters of type AccountModifier and TypeMethodDescriptionprotected String
AccountServices.createLoginLink
(Account account) This method create a login link for the specified user account.protected void
AccountServices.createToken
(Account account) This method create a one-time token for a user account.protected void
AccountServices.processCurrentAccount
(Account account) This method process an existing user account.protected void
AccountServices.processNewAccount
(Account account) This method process the creation of a new user account.protected void
AccountServices.resetAccount
(Account account) This method resets the provided user account's password and create a new token for it.protected void
AccountServices.resetToken
(Account account) This method reset the one-time token for a user account.void
AccountServices.setEmailVerified
(Account account) This method set the email verification status for a user account.