Package com.soffid.iam.model
Class AccountSnapshotEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.AccountSnapshotEntityDaoBase
-
- All Implemented Interfaces:
AccountSnapshotEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
AccountSnapshotEntityDaoImpl
public abstract class AccountSnapshotEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements AccountSnapshotEntityDao
DAO Base for Entity AccountSnapshotEntity
-
-
Constructor Summary
Constructors Constructor Description AccountSnapshotEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(AccountSnapshotEntity entity)Adds an instance ofAccountSnapshotEntityto the persistent store.voidcreate(Collection<? extends AccountSnapshotEntity> entities)Creates a collection ofAccountSnapshotEntityand adds it to the persistent store.AccountEntityDaogetAccountEntityDao()Gets reference toaccountEntityDao.AccountSnapshotEntityload(Long id)Loads an instance ofAccountSnapshotEntityfrom the persistent store.List<AccountSnapshotEntity>loadAll()Loads all instances ofAccountSnapshotEntityfrom the persistent store.AccountSnapshotEntitynewAccountSnapshotEntity()Creates an instance ofAccountSnapshotEntity.List<AccountSnapshotEntity>query(String queryString, Parameter[] parameters)Query ofAccountSnapshotEntityfrom the persistent store.List<AccountSnapshotEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofAccountSnapshotEntityfrom the persistent store.voidremove(AccountSnapshotEntity entity)Removes an instance ofAccountSnapshotEntityfrom the persistent store.voidremove(Long id)Removes an instance ofAccountSnapshotEntityfrom the persistent store.voidremove(Collection<? extends AccountSnapshotEntity> entities)Removes a collection ofAccountSnapshotEntityfrom the persistent store.voidsetAccountEntityDao(AccountEntityDao accountEntityDao)Sets reference toaccountEntityDao.voidupdate(AccountSnapshotEntity entity)Updates an instance ofAccountSnapshotEntityat the persistent store.voidupdate(Collection<? extends AccountSnapshotEntity> entities)Updates a collection ofAccountSnapshotEntityin the persistent store.-
Methods inherited from class org.springframework.orm.hibernate3.support.HibernateDaoSupport
checkDaoConfig, closeSessionIfNecessary, convertHibernateAccessException, createHibernateTemplate, getHibernateTemplate, getSession, getSession, getSessionFactory, releaseSession, setHibernateTemplate, setSessionFactory
-
-
-
-
Method Detail
-
setAccountEntityDao
public void setAccountEntityDao(AccountEntityDao accountEntityDao)
Sets reference toaccountEntityDao.
-
getAccountEntityDao
public AccountEntityDao getAccountEntityDao()
Gets reference toaccountEntityDao.
-
newAccountSnapshotEntity
public AccountSnapshotEntity newAccountSnapshotEntity()
Creates an instance ofAccountSnapshotEntity.- Specified by:
newAccountSnapshotEntityin interfaceAccountSnapshotEntityDao
-
load
public AccountSnapshotEntity load(Long id)
Loads an instance ofAccountSnapshotEntityfrom the persistent store.- Specified by:
loadin interfaceAccountSnapshotEntityDao
-
loadAll
public List<AccountSnapshotEntity> loadAll()
Loads all instances ofAccountSnapshotEntityfrom the persistent store.- Specified by:
loadAllin interfaceAccountSnapshotEntityDao
-
create
public void create(AccountSnapshotEntity entity)
Adds an instance ofAccountSnapshotEntityto the persistent store.- Specified by:
createin interfaceAccountSnapshotEntityDao
-
update
public void update(AccountSnapshotEntity entity)
Updates an instance ofAccountSnapshotEntityat the persistent store.- Specified by:
updatein interfaceAccountSnapshotEntityDao
-
remove
public void remove(AccountSnapshotEntity entity)
Removes an instance ofAccountSnapshotEntityfrom the persistent store.- Specified by:
removein interfaceAccountSnapshotEntityDao
-
create
public void create(Collection<? extends AccountSnapshotEntity> entities)
Creates a collection ofAccountSnapshotEntityand adds it to the persistent store.- Specified by:
createin interfaceAccountSnapshotEntityDao
-
update
public void update(Collection<? extends AccountSnapshotEntity> entities)
Updates a collection ofAccountSnapshotEntityin the persistent store.- Specified by:
updatein interfaceAccountSnapshotEntityDao
-
remove
public void remove(Collection<? extends AccountSnapshotEntity> entities)
Removes a collection ofAccountSnapshotEntityfrom the persistent store.- Specified by:
removein interfaceAccountSnapshotEntityDao
-
remove
public void remove(Long id)
Removes an instance ofAccountSnapshotEntityfrom the persistent store.- Specified by:
removein interfaceAccountSnapshotEntityDao
-
query
public List<AccountSnapshotEntity> query(String queryString, Parameter[] parameters)
Query ofAccountSnapshotEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceAccountSnapshotEntityDao
-
query
public List<AccountSnapshotEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofAccountSnapshotEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceAccountSnapshotEntityDao
-
-