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 void
create(AccountSnapshotEntity entity)
Adds an instance ofAccountSnapshotEntity
to the persistent store.void
create(Collection<? extends AccountSnapshotEntity> entities)
Creates a collection ofAccountSnapshotEntity
and adds it to the persistent store.AccountEntityDao
getAccountEntityDao()
Gets reference toaccountEntityDao
.AccountSnapshotEntity
load(Long id)
Loads an instance ofAccountSnapshotEntity
from the persistent store.List<AccountSnapshotEntity>
loadAll()
Loads all instances ofAccountSnapshotEntity
from the persistent store.AccountSnapshotEntity
newAccountSnapshotEntity()
Creates an instance ofAccountSnapshotEntity
.List<AccountSnapshotEntity>
query(String queryString, Parameter[] parameters)
Query ofAccountSnapshotEntity
from the persistent store.List<AccountSnapshotEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofAccountSnapshotEntity
from the persistent store.void
remove(AccountSnapshotEntity entity)
Removes an instance ofAccountSnapshotEntity
from the persistent store.void
remove(Long id)
Removes an instance ofAccountSnapshotEntity
from the persistent store.void
remove(Collection<? extends AccountSnapshotEntity> entities)
Removes a collection ofAccountSnapshotEntity
from the persistent store.void
setAccountEntityDao(AccountEntityDao accountEntityDao)
Sets reference toaccountEntityDao
.void
update(AccountSnapshotEntity entity)
Updates an instance ofAccountSnapshotEntity
at the persistent store.void
update(Collection<? extends AccountSnapshotEntity> entities)
Updates a collection ofAccountSnapshotEntity
in 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:
newAccountSnapshotEntity
in interfaceAccountSnapshotEntityDao
-
load
public AccountSnapshotEntity load(Long id)
Loads an instance ofAccountSnapshotEntity
from the persistent store.- Specified by:
load
in interfaceAccountSnapshotEntityDao
-
loadAll
public List<AccountSnapshotEntity> loadAll()
Loads all instances ofAccountSnapshotEntity
from the persistent store.- Specified by:
loadAll
in interfaceAccountSnapshotEntityDao
-
create
public void create(AccountSnapshotEntity entity)
Adds an instance ofAccountSnapshotEntity
to the persistent store.- Specified by:
create
in interfaceAccountSnapshotEntityDao
-
update
public void update(AccountSnapshotEntity entity)
Updates an instance ofAccountSnapshotEntity
at the persistent store.- Specified by:
update
in interfaceAccountSnapshotEntityDao
-
remove
public void remove(AccountSnapshotEntity entity)
Removes an instance ofAccountSnapshotEntity
from the persistent store.- Specified by:
remove
in interfaceAccountSnapshotEntityDao
-
create
public void create(Collection<? extends AccountSnapshotEntity> entities)
Creates a collection ofAccountSnapshotEntity
and adds it to the persistent store.- Specified by:
create
in interfaceAccountSnapshotEntityDao
-
update
public void update(Collection<? extends AccountSnapshotEntity> entities)
Updates a collection ofAccountSnapshotEntity
in the persistent store.- Specified by:
update
in interfaceAccountSnapshotEntityDao
-
remove
public void remove(Collection<? extends AccountSnapshotEntity> entities)
Removes a collection ofAccountSnapshotEntity
from the persistent store.- Specified by:
remove
in interfaceAccountSnapshotEntityDao
-
remove
public void remove(Long id)
Removes an instance ofAccountSnapshotEntity
from the persistent store.- Specified by:
remove
in interfaceAccountSnapshotEntityDao
-
query
public List<AccountSnapshotEntity> query(String queryString, Parameter[] parameters)
Query ofAccountSnapshotEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceAccountSnapshotEntityDao
-
query
public List<AccountSnapshotEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofAccountSnapshotEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
query
in interfaceAccountSnapshotEntityDao
-
-