Package com.soffid.iam.model
Class HostEntryPointEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.HostEntryPointEntityDaoBase
-
- All Implemented Interfaces:
HostEntryPointEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
HostEntryPointEntityDaoImpl
public abstract class HostEntryPointEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements HostEntryPointEntityDao
DAO Base for Entity HostEntryPointEntity
-
-
Constructor Summary
Constructors Constructor Description HostEntryPointEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(HostEntryPointEntity entity)Adds an instance ofHostEntryPointEntityto the persistent store.voidcreate(Collection<? extends HostEntryPointEntity> entities)Creates a collection ofHostEntryPointEntityand adds it to the persistent store.EntryPointEntityDaogetEntryPointEntityDao()Gets reference topuntEntradaEntityDao.HostEntityDaogetHostEntityDao()Gets reference tomaquinaEntityDao.HostEntryPointEntityload(Long id)Loads an instance ofHostEntryPointEntityfrom the persistent store.List<HostEntryPointEntity>loadAll()Loads all instances ofHostEntryPointEntityfrom the persistent store.HostEntryPointEntitynewHostEntryPointEntity()Creates an instance ofHostEntryPointEntity.List<HostEntryPointEntity>query(String queryString, Parameter[] parameters)Query ofHostEntryPointEntityfrom the persistent store.List<HostEntryPointEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostEntryPointEntityfrom the persistent store.voidremove(HostEntryPointEntity entity)Removes an instance ofHostEntryPointEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostEntryPointEntityfrom the persistent store.voidremove(Collection<? extends HostEntryPointEntity> entities)Removes a collection ofHostEntryPointEntityfrom the persistent store.voidsetEntryPointEntityDao(EntryPointEntityDao puntEntradaEntityDao)Sets reference topuntEntradaEntityDao.voidsetHostEntityDao(HostEntityDao maquinaEntityDao)Sets reference tomaquinaEntityDao.voidupdate(HostEntryPointEntity entity)Updates an instance ofHostEntryPointEntityat the persistent store.voidupdate(Collection<? extends HostEntryPointEntity> entities)Updates a collection ofHostEntryPointEntityin 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
-
setHostEntityDao
public void setHostEntityDao(HostEntityDao maquinaEntityDao)
Sets reference tomaquinaEntityDao.
-
getHostEntityDao
public HostEntityDao getHostEntityDao()
Gets reference tomaquinaEntityDao.
-
setEntryPointEntityDao
public void setEntryPointEntityDao(EntryPointEntityDao puntEntradaEntityDao)
Sets reference topuntEntradaEntityDao.
-
getEntryPointEntityDao
public EntryPointEntityDao getEntryPointEntityDao()
Gets reference topuntEntradaEntityDao.
-
newHostEntryPointEntity
public HostEntryPointEntity newHostEntryPointEntity()
Creates an instance ofHostEntryPointEntity.- Specified by:
newHostEntryPointEntityin interfaceHostEntryPointEntityDao
-
load
public HostEntryPointEntity load(Long id)
Loads an instance ofHostEntryPointEntityfrom the persistent store.- Specified by:
loadin interfaceHostEntryPointEntityDao
-
loadAll
public List<HostEntryPointEntity> loadAll()
Loads all instances ofHostEntryPointEntityfrom the persistent store.- Specified by:
loadAllin interfaceHostEntryPointEntityDao
-
create
public void create(HostEntryPointEntity entity)
Adds an instance ofHostEntryPointEntityto the persistent store.- Specified by:
createin interfaceHostEntryPointEntityDao
-
update
public void update(HostEntryPointEntity entity)
Updates an instance ofHostEntryPointEntityat the persistent store.- Specified by:
updatein interfaceHostEntryPointEntityDao
-
remove
public void remove(HostEntryPointEntity entity)
Removes an instance ofHostEntryPointEntityfrom the persistent store.- Specified by:
removein interfaceHostEntryPointEntityDao
-
create
public void create(Collection<? extends HostEntryPointEntity> entities)
Creates a collection ofHostEntryPointEntityand adds it to the persistent store.- Specified by:
createin interfaceHostEntryPointEntityDao
-
update
public void update(Collection<? extends HostEntryPointEntity> entities)
Updates a collection ofHostEntryPointEntityin the persistent store.- Specified by:
updatein interfaceHostEntryPointEntityDao
-
remove
public void remove(Collection<? extends HostEntryPointEntity> entities)
Removes a collection ofHostEntryPointEntityfrom the persistent store.- Specified by:
removein interfaceHostEntryPointEntityDao
-
remove
public void remove(Long id)
Removes an instance ofHostEntryPointEntityfrom the persistent store.- Specified by:
removein interfaceHostEntryPointEntityDao
-
query
public List<HostEntryPointEntity> query(String queryString, Parameter[] parameters)
Query ofHostEntryPointEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceHostEntryPointEntityDao
-
query
public List<HostEntryPointEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostEntryPointEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceHostEntryPointEntityDao
-
-