org.janux.bus.security
Interface AccountDao

All Superinterfaces:
DataAccessObject

Deprecated. use AccountDaoGeneric

public interface AccountDao
extends DataAccessObject

Used to create, save, retrieve, update and delete Account objects from persistent storage

Since:
0.1
Author:
Philippe Paravicini

Method Summary
 Account findByName(String name)
          Deprecated. Returns an Account by names, or null if the Account is not found.
 org.jasypt.digest.StringDigester getPasswordEncryptor()
          Deprecated.  
 SortedSet<Account> loadAll(boolean initializeAccounts)
          Deprecated. Loads all Accounts defined in the system
 Account loadByName(String name)
          Deprecated. loads an Account object, or throws exception if Account with that name is not found
 Account newAccount()
          Deprecated. returns a new Account instance
 void setPasswordEncryptor(org.jasypt.digest.StringDigester passwordEncryptor)
          Deprecated.  
 
Methods inherited from interface org.janux.bus.persistence.DataAccessObject
delete, merge, refresh, save, saveOrUpdate, update
 

Method Detail

findByName

Account findByName(String name)
Deprecated. 
Returns an Account by names, or null if the Account is not found.

Parameters:
name - the Account name

loadByName

Account loadByName(String name)
                   throws EntityNotFoundException
Deprecated. 
loads an Account object, or throws exception if Account with that name is not found

Parameters:
name - a name that uniquely identifies this Account
Throws:
EntityNotFoundException - if a Account object with that name is not found

loadAll

SortedSet<Account> loadAll(boolean initializeAccounts)
Deprecated. 
Loads all Accounts defined in the system


newAccount

Account newAccount()
Deprecated. 
returns a new Account instance


getPasswordEncryptor

org.jasypt.digest.StringDigester getPasswordEncryptor()
Deprecated. 

setPasswordEncryptor

void setPasswordEncryptor(org.jasypt.digest.StringDigester passwordEncryptor)
Deprecated. 


Copyright © 2005-2013 Janux. All Rights Reserved.