Uses of Interface
org.janux.bus.security.Account

Packages that use Account
org.janux.bus.security The org.janux.bus.security package, soon to be renamed the org.janux.authorization package, contains interfaces that define a very flexible Permission-Based scheme for doing Authorization within an application; this scheme makes it possible to define whatever permissions suit a specific domain, and aggregate them into existing or new roles without having to make code changes; the key interfaces of this package are PermissionsCapable, Account, Role, and PermissionContext
 

Uses of Account in org.janux.bus.security
 

Classes in org.janux.bus.security with type parameters of type Account
 interface AccountDaoGeneric<T extends Account>
          Used to create, save, retrieve, update and delete Account objects from persistent storage
 

Methods in org.janux.bus.security that return Account
 Account AccountService.findAccountByName(String name)
          Returns an Account by names, or null if the Account is not found.
 Account AccountDao.findByName(String name)
          Deprecated. Returns an Account by names, or null if the Account is not found.
 Account AccountDaoGeneric.findByName(String name)
          Returns an Account by names, or null if the Account is not found.
 Account SecurityService.findByParty(Integer partyId)
           
 Account AccountParty.getAccount()
           
 Account AccountPartyDaoGeneric.getAccount(Integer partyId)
           
 Account AccountService.loadAccountByName(String name)
          loads an Account object, or throws exception if Account with that name is not found
 Account AccountDao.loadByName(String name)
          Deprecated. loads an Account object, or throws exception if Account with that name is not found
 Account AccountDaoGeneric.loadByName(String name)
          loads an Account object, or throws exception if Account with that name is not found
 Account AccountDao.newAccount()
          Deprecated. returns a new Account instance
 Account AccountDaoGeneric.newAccount()
          returns a new Account instance
 Account AccountService.newAccount()
          returns a new Account instance
 

Methods in org.janux.bus.security that return types with arguments of type Account
 SortedSet<Account> AccountDao.loadAll(boolean initializeAccounts)
          Deprecated. Loads all Accounts defined in the system
 SortedSet<Account> AccountDaoGeneric.loadAll(boolean initializeAccounts)
          Loads all Accounts defined in the system
 SortedSet<Account> AccountService.loadAllAccounts(boolean initializeAccounts)
          Loads all Accounts defined in the system
 

Methods in org.janux.bus.security with parameters of type Account
 void AccountService.deleteAccount(Account account)
           
 void AccountService.saveAccount(Account account)
           
 void AccountService.saveOrUpdateAccount(Account account)
           
 void AccountParty.setAccount(Account account)
           
 void AccountService.setAccountPassword(Account account, String passwordToEncrypt)
           
 



Copyright © 2005-2013 Janux. All Rights Reserved.