Package com.soffid.iam.model
Class HostSystemEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.HostSystemEntityDaoBase
-
- All Implemented Interfaces:
HostSystemEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
HostSystemEntityDaoImpl
public abstract class HostSystemEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements HostSystemEntityDao
DAO Base for Entity HostSystemEntity
-
-
Constructor Summary
Constructors Constructor Description HostSystemEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(HostSystemEntity entity)Adds an instance ofHostSystemEntityto the persistent store.voidcreate(Collection<? extends HostSystemEntity> entities)Creates a collection ofHostSystemEntityand adds it to the persistent store.HostEntityDaogetHostEntityDao()Gets reference tomaquinaEntityDao.SystemEntityDaogetSystemEntityDao()Gets reference todispatcherEntityDao.HostSystemEntityload(Long id)Loads an instance ofHostSystemEntityfrom the persistent store.List<HostSystemEntity>loadAll()Loads all instances ofHostSystemEntityfrom the persistent store.HostSystemEntitynewHostSystemEntity()Creates an instance ofHostSystemEntity.List<HostSystemEntity>query(String queryString, Parameter[] parameters)Query ofHostSystemEntityfrom the persistent store.List<HostSystemEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostSystemEntityfrom the persistent store.voidremove(HostSystemEntity entity)Removes an instance ofHostSystemEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostSystemEntityfrom the persistent store.voidremove(Collection<? extends HostSystemEntity> entities)Removes a collection ofHostSystemEntityfrom the persistent store.voidsetHostEntityDao(HostEntityDao maquinaEntityDao)Sets reference tomaquinaEntityDao.voidsetSystemEntityDao(SystemEntityDao dispatcherEntityDao)Sets reference todispatcherEntityDao.voidupdate(HostSystemEntity entity)Updates an instance ofHostSystemEntityat the persistent store.voidupdate(Collection<? extends HostSystemEntity> entities)Updates a collection ofHostSystemEntityin 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
-
setSystemEntityDao
public void setSystemEntityDao(SystemEntityDao dispatcherEntityDao)
Sets reference todispatcherEntityDao.
-
getSystemEntityDao
public SystemEntityDao getSystemEntityDao()
Gets reference todispatcherEntityDao.
-
setHostEntityDao
public void setHostEntityDao(HostEntityDao maquinaEntityDao)
Sets reference tomaquinaEntityDao.
-
getHostEntityDao
public HostEntityDao getHostEntityDao()
Gets reference tomaquinaEntityDao.
-
newHostSystemEntity
public HostSystemEntity newHostSystemEntity()
Creates an instance ofHostSystemEntity.- Specified by:
newHostSystemEntityin interfaceHostSystemEntityDao
-
load
public HostSystemEntity load(Long id)
Loads an instance ofHostSystemEntityfrom the persistent store.- Specified by:
loadin interfaceHostSystemEntityDao
-
loadAll
public List<HostSystemEntity> loadAll()
Loads all instances ofHostSystemEntityfrom the persistent store.- Specified by:
loadAllin interfaceHostSystemEntityDao
-
create
public void create(HostSystemEntity entity)
Adds an instance ofHostSystemEntityto the persistent store.- Specified by:
createin interfaceHostSystemEntityDao
-
update
public void update(HostSystemEntity entity)
Updates an instance ofHostSystemEntityat the persistent store.- Specified by:
updatein interfaceHostSystemEntityDao
-
remove
public void remove(HostSystemEntity entity)
Removes an instance ofHostSystemEntityfrom the persistent store.- Specified by:
removein interfaceHostSystemEntityDao
-
create
public void create(Collection<? extends HostSystemEntity> entities)
Creates a collection ofHostSystemEntityand adds it to the persistent store.- Specified by:
createin interfaceHostSystemEntityDao
-
update
public void update(Collection<? extends HostSystemEntity> entities)
Updates a collection ofHostSystemEntityin the persistent store.- Specified by:
updatein interfaceHostSystemEntityDao
-
remove
public void remove(Collection<? extends HostSystemEntity> entities)
Removes a collection ofHostSystemEntityfrom the persistent store.- Specified by:
removein interfaceHostSystemEntityDao
-
remove
public void remove(Long id)
Removes an instance ofHostSystemEntityfrom the persistent store.- Specified by:
removein interfaceHostSystemEntityDao
-
query
public List<HostSystemEntity> query(String queryString, Parameter[] parameters)
Query ofHostSystemEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceHostSystemEntityDao
-
query
public List<HostSystemEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostSystemEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceHostSystemEntityDao
-
-