Uses of Class
org.romaframework.module.users.domain.BaseAccount

Packages that use BaseAccount
org.romaframework.module.users   
org.romaframework.module.users.domain   
org.romaframework.module.users.domain.portal   
org.romaframework.module.users.repository   
org.romaframework.module.users.view.domain   
org.romaframework.module.users.view.domain.baseaccount   
 

Uses of BaseAccount in org.romaframework.module.users
 

Methods in org.romaframework.module.users that return BaseAccount
 BaseAccount UsersHelper.getAccount(BaseProfile iProfile, java.lang.String iName)
           
 BaseAccount AccountBinder.getAccount(java.lang.String authenticationName, java.util.Map<?,?> authenticationResult)
          returns a BaseAccount corresponding to an LDAP user
 BaseAccount SimpleAccountBinder.getAccount(java.lang.String authenticationName, java.util.Map<?,?> authenticationResult)
           
 BaseAccount UsersHelper.getAccount(java.lang.String iProfileName, java.lang.String iName)
           
 BaseAccount UsersHelper.setAccount(BaseAccount iAccount)
           
 BaseAccount UsersHelper.setAccount(BaseProfile iProfile, java.lang.String iName, java.lang.String iPassword)
           
 BaseAccount UsersHelper.setAccount(BaseProfile iProfile, java.lang.String iName, java.lang.String iPassword, BaseAccountStatus iStatus)
           
 BaseAccount UsersHelper.setAccount(java.lang.String iProfileName, java.lang.String iName, java.lang.String iPassword)
           
 BaseAccount UsersHelper.setAccount(java.lang.String iProfileName, java.lang.String iName, java.lang.String iPassword, BaseAccountStatus iStatus)
           
 

Methods in org.romaframework.module.users that return types with arguments of type BaseAccount
 java.util.List<BaseAccount> UsersHelper.getAccountList(BaseProfile iProfile)
           
 java.util.List<BaseAccount> UsersHelper.getAccountList(java.lang.String iProfileName)
           
 

Methods in org.romaframework.module.users with parameters of type BaseAccount
static ActivityLog ActivityLogHelper.findLastActivityOfAccount(BaseAccount iAccount)
           
 BaseAccount UsersHelper.setAccount(BaseAccount iAccount)
           
 

Uses of BaseAccount in org.romaframework.module.users.domain
 

Methods in org.romaframework.module.users.domain that return BaseAccount
 BaseAccount ActivityLog.getAccount()
           
 BaseAccount CustomProfiling.getAccount()
           
 BaseAccount Tracking.getAccount()
           
 

Methods in org.romaframework.module.users.domain with parameters of type BaseAccount
 void CustomProfiling.setAccount(BaseAccount account)
           
 void Tracking.setAccount(BaseAccount user)
           
 

Uses of BaseAccount in org.romaframework.module.users.domain.portal
 

Methods in org.romaframework.module.users.domain.portal that return BaseAccount
 BaseAccount PortalPreferences.getAccount()
          Method that returns the BaseAccount of this preferences
 

Methods in org.romaframework.module.users.domain.portal with parameters of type BaseAccount
 void PortalPreferences.setAccount(BaseAccount account)
          Method that sets the BaseAccount of this preferences
 

Constructors in org.romaframework.module.users.domain.portal with parameters of type BaseAccount
PortalPreferences(BaseAccount iAccount)
          It creates a new instance of PortlaPreferences for specified account
 

Uses of BaseAccount in org.romaframework.module.users.repository
 

Methods in org.romaframework.module.users.repository that return BaseAccount
 BaseAccount BaseAccountRepository.findByName(org.romaframework.aspect.persistence.PersistenceAspect db, java.lang.String iName)
           
 BaseAccount BaseAccountRepository.findByName(java.lang.String iName)
           
 BaseAccount BaseAccountRepository.update(BaseAccount object)
           
 

Methods in org.romaframework.module.users.repository that return types with arguments of type BaseAccount
 java.util.List<BaseAccount> BaseAccountRepository.findOfActiveAccountsOfGroups(BaseAccount iAccount)
           
 

Methods in org.romaframework.module.users.repository with parameters of type BaseAccount
 void BaseAccountRepository.delete(BaseAccount object)
           
 java.util.List<ActivityLog> ActivityLogRepository.findByAccount(BaseAccount iAccount)
           
 java.util.List<BaseAccount> BaseAccountRepository.findOfActiveAccountsOfGroups(BaseAccount iAccount)
           
 BaseAccount BaseAccountRepository.update(BaseAccount object)
           
 

Uses of BaseAccount in org.romaframework.module.users.view.domain
 

Methods in org.romaframework.module.users.view.domain with parameters of type BaseAccount
static boolean AccountManagementUtility.isAccountExpired(BaseAccount account)
          Check if the account period has gone off
static boolean AccountManagementUtility.isPasswordExpired(BaseAccount account)
          Check if the password period has gone off
static boolean AccountManagementUtility.isPasswordUnused(BaseAccount account, java.lang.String password)
          Discover if the password have been used before
 

Constructors in org.romaframework.module.users.view.domain with parameters of type BaseAccount
ChangePassword(BaseAccount iAccount, org.romaframework.frontend.domain.message.MessageResponseListener iListener)
           
 

Uses of BaseAccount in org.romaframework.module.users.view.domain.baseaccount
 

Constructors in org.romaframework.module.users.view.domain.baseaccount with parameters of type BaseAccount
BaseAccountFilter(BaseAccount iAccount)
           
BaseAccountListable(BaseAccount iEntity)