public interface AccountsFacadeRemote
Modifier and Type | Method and Description |
---|---|
AdditionalAccountInfoJPA |
addAdditionalAccountInfo(AdditionalAccountInfoJPA accountInfo)
Adds the additional account info.
|
java.lang.Boolean |
deleteAccount(AccountJPA newAccount)
Delete account.
|
java.lang.Boolean |
deleteAccountGroup(AccountGroupJPA newAccount)
Delete account group.
|
java.lang.Boolean |
deleteAdditionalAccountInfo(AdditionalAccountInfoJPA accountInfo)
Delete additional account info.
|
java.util.Collection<?> |
listAccountGroupsByUser(java.lang.String userName)
List account groups by user.
|
java.util.Collection<?> |
listAccountsByAccountGroup(java.lang.String userName,
java.lang.String accountGroupName)
List accounts by account group.
|
java.util.Collection<?> |
listAdditionalAccountInfoJPAByAccount(int idAccount)
List additional account info jpa by account.
|
AccountJPA |
saveAccount(AccountJPA newAccount)
Save account.
|
AccountGroupJPA |
saveAccountGroup(AccountGroupJPA newAccountGroup)
Remotely invoked method.
|
AdditionalAccountInfoJPA |
saveAdditionalAccountInfoJPA(AdditionalAccountInfoJPA newAccountInfo)
Save additional account info jpa.
|
AccountJPA |
showAccountByAccountGroup(java.lang.String groupName,
java.lang.String accountName)
Show account by account group.
|
AccountJPA |
showAccountGroup(int id)
Show account group.
|
AccountJPA |
showAccountGroup(java.lang.String accountGroupName)
Show account group.
|
java.lang.Boolean |
updateEncryptedData(java.lang.String userName,
java.lang.String newMasterPassword)
Update encrypted data.
|
AccountGroupJPA saveAccountGroup(AccountGroupJPA newAccountGroup)
newAccountGroup
- the new account groupAccountJPA saveAccount(AccountJPA newAccount)
newAccount
- the new accountjava.lang.Boolean deleteAccount(AccountJPA newAccount)
newAccount
- the new accountjava.lang.Boolean deleteAccountGroup(AccountGroupJPA newAccount)
newAccount
- the new accountjava.util.Collection<?> listAccountGroupsByUser(java.lang.String userName)
userName
- the user namejava.util.Collection<?> listAccountsByAccountGroup(java.lang.String userName, java.lang.String accountGroupName)
userName
- the user nameaccountGroupName
- the account group namejava.lang.Boolean updateEncryptedData(java.lang.String userName, java.lang.String newMasterPassword)
userName
- the user namenewMasterPassword
- the new master passwordAccountJPA showAccountGroup(java.lang.String accountGroupName)
accountGroupName
- the account group nameAccountJPA showAccountGroup(int id)
id
- the idAccountJPA showAccountByAccountGroup(java.lang.String groupName, java.lang.String accountName)
groupName
- the group nameaccountName
- the account nameAdditionalAccountInfoJPA addAdditionalAccountInfo(AdditionalAccountInfoJPA accountInfo)
accountInfo
- the account infojava.lang.Boolean deleteAdditionalAccountInfo(AdditionalAccountInfoJPA accountInfo)
accountInfo
- the account infojava.util.Collection<?> listAdditionalAccountInfoJPAByAccount(int idAccount)
idAccount
- the id accountAdditionalAccountInfoJPA saveAdditionalAccountInfoJPA(AdditionalAccountInfoJPA newAccountInfo)
newAccountInfo
- the new account info