Package | Description |
---|---|
ejb | |
jpa | |
managedbean |
Modifier and Type | Method and Description |
---|---|
UserJPA |
UserFacadeRemote.activateUser(UserJPA user)
Activate user.
|
UserJPA |
UserFacadeBean.activateUser(UserJPA user)
Activates an existing user.
|
UserJPA |
UserFacadeRemote.addUser(UserJPA newUser)
Remotely invoked method.
|
UserJPA |
UserFacadeBean.addUser(UserJPA newUser)
Adds a new user.
|
UserJPA |
UserFacadeRemote.doLogin(java.lang.String user,
java.lang.String pass)
Do login.
|
UserJPA |
UserFacadeBean.doLogin(java.lang.String userName,
java.lang.String userPass)
Login user.
|
UserJPA |
UserFacadeRemote.getUserByActionToken(java.lang.String actionToken)
Gets the user by action token.
|
UserJPA |
UserFacadeBean.getUserByActionToken(java.lang.String actionToken)
Reads the user identified by the provided action token.
|
UserJPA |
UserFacadeRemote.getUserByIdentifier(java.lang.String userIdentifier)
Gets the user by identifier.
|
UserJPA |
UserFacadeBean.getUserByIdentifier(java.lang.String userIdentifier)
Reads the user identified by the provided identifier.
|
UserJPA |
UserFacadeRemote.initiateResetPassword(UserJPA user)
Initiate reset password.
|
UserJPA |
UserFacadeBean.initiateResetPassword(UserJPA user)
Initiates password reset for the user.
|
UserJPA |
UserFacadeRemote.resetPassword(UserJPA user)
Reset password.
|
UserJPA |
UserFacadeBean.resetPassword(UserJPA user)
Resets the password of the user identified by the actionToken.
|
UserJPA |
UserFacadeRemote.updateUser(UserJPA currentUser)
Update user.
|
UserJPA |
UserFacadeBean.updateUser(UserJPA currentUser) |
Modifier and Type | Method and Description |
---|---|
UserJPA |
UserFacadeRemote.activateUser(UserJPA user)
Activate user.
|
UserJPA |
UserFacadeBean.activateUser(UserJPA user)
Activates an existing user.
|
UserJPA |
UserFacadeRemote.addUser(UserJPA newUser)
Remotely invoked method.
|
UserJPA |
UserFacadeBean.addUser(UserJPA newUser)
Adds a new user.
|
java.lang.Boolean |
UserFacadeRemote.deleteUser(UserJPA currentUser)
Delete user.
|
java.lang.Boolean |
UserFacadeBean.deleteUser(UserJPA currentUser) |
UserJPA |
UserFacadeRemote.initiateResetPassword(UserJPA user)
Initiate reset password.
|
UserJPA |
UserFacadeBean.initiateResetPassword(UserJPA user)
Initiates password reset for the user.
|
UserJPA |
UserFacadeRemote.resetPassword(UserJPA user)
Reset password.
|
UserJPA |
UserFacadeBean.resetPassword(UserJPA user)
Resets the password of the user identified by the actionToken.
|
void |
UserFacadeRemote.sendActivationMail(UserJPA user,
java.lang.String serverString)
Send activation mail.
|
void |
UserFacadeBean.sendActivationMail(UserJPA user,
java.lang.String serverString)
Method responsible for sending a email to the user, including a link to
activate his user account.
|
void |
UserFacadeRemote.sendPasswordResetMail(UserJPA user,
java.lang.String serverString)
Send password reset mail.
|
void |
UserFacadeBean.sendPasswordResetMail(UserJPA user,
java.lang.String serverString)
Sends the user a link to reset the password.
|
UserJPA |
UserFacadeRemote.updateUser(UserJPA currentUser)
Update user.
|
UserJPA |
UserFacadeBean.updateUser(UserJPA currentUser) |
Modifier and Type | Method and Description |
---|---|
UserJPA |
AccountGroupJPA.getUser()
Methods get/set persistent relationships.
|
Modifier and Type | Method and Description |
---|---|
void |
AccountGroupJPA.setUser(UserJPA ownerUser)
Sets the user.
|
Constructor and Description |
---|
AccountGroupJPA(int id,
java.lang.String groupName,
UserJPA ownerUser,
java.util.Collection<AccountJPA> accounts)
Instantiates a new account group jpa.
|
Modifier and Type | Method and Description |
---|---|
UserJPA |
UserProfileView.getCurrentUser()
Gets the current user.
|
UserJPA |
LoginUserView.getCurrentUser()
Gets the current user.
|
UserJPA |
ResetPasswordView.getUser()
Gets the user.
|
UserJPA |
CreateUserView.getUser()
Gets the user.
|
UserJPA |
ActivateUserView.getUser()
Gets the user.
|
Modifier and Type | Method and Description |
---|---|
org.primefaces.model.TreeNode |
TreeVewDataManagement.initDocuments(UserJPA userName)
Inits the documents.
|
void |
UserProfileView.setCurrentUser(UserJPA currentUser)
Sets the current user.
|
void |
LoginUserView.setCurrentUser(UserJPA currentUser)
Sets the current user.
|
void |
ResetPasswordView.setUser(UserJPA user)
Sets the user.
|
void |
CreateUserView.setUser(UserJPA user)
Sets the user.
|
void |
ActivateUserView.setUser(UserJPA user)
Sets the user.
|