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 void
create(HostEntryPointEntity entity)
Adds an instance ofHostEntryPointEntity
to the persistent store.void
create(Collection<? extends HostEntryPointEntity> entities)
Creates a collection ofHostEntryPointEntity
and adds it to the persistent store.EntryPointEntityDao
getEntryPointEntityDao()
Gets reference topuntEntradaEntityDao
.HostEntityDao
getHostEntityDao()
Gets reference tomaquinaEntityDao
.HostEntryPointEntity
load(Long id)
Loads an instance ofHostEntryPointEntity
from the persistent store.List<HostEntryPointEntity>
loadAll()
Loads all instances ofHostEntryPointEntity
from the persistent store.HostEntryPointEntity
newHostEntryPointEntity()
Creates an instance ofHostEntryPointEntity
.List<HostEntryPointEntity>
query(String queryString, Parameter[] parameters)
Query ofHostEntryPointEntity
from the persistent store.List<HostEntryPointEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostEntryPointEntity
from the persistent store.void
remove(HostEntryPointEntity entity)
Removes an instance ofHostEntryPointEntity
from the persistent store.void
remove(Long id)
Removes an instance ofHostEntryPointEntity
from the persistent store.void
remove(Collection<? extends HostEntryPointEntity> entities)
Removes a collection ofHostEntryPointEntity
from the persistent store.void
setEntryPointEntityDao(EntryPointEntityDao puntEntradaEntityDao)
Sets reference topuntEntradaEntityDao
.void
setHostEntityDao(HostEntityDao maquinaEntityDao)
Sets reference tomaquinaEntityDao
.void
update(HostEntryPointEntity entity)
Updates an instance ofHostEntryPointEntity
at the persistent store.void
update(Collection<? extends HostEntryPointEntity> entities)
Updates a collection ofHostEntryPointEntity
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
-
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:
newHostEntryPointEntity
in interfaceHostEntryPointEntityDao
-
load
public HostEntryPointEntity load(Long id)
Loads an instance ofHostEntryPointEntity
from the persistent store.- Specified by:
load
in interfaceHostEntryPointEntityDao
-
loadAll
public List<HostEntryPointEntity> loadAll()
Loads all instances ofHostEntryPointEntity
from the persistent store.- Specified by:
loadAll
in interfaceHostEntryPointEntityDao
-
create
public void create(HostEntryPointEntity entity)
Adds an instance ofHostEntryPointEntity
to the persistent store.- Specified by:
create
in interfaceHostEntryPointEntityDao
-
update
public void update(HostEntryPointEntity entity)
Updates an instance ofHostEntryPointEntity
at the persistent store.- Specified by:
update
in interfaceHostEntryPointEntityDao
-
remove
public void remove(HostEntryPointEntity entity)
Removes an instance ofHostEntryPointEntity
from the persistent store.- Specified by:
remove
in interfaceHostEntryPointEntityDao
-
create
public void create(Collection<? extends HostEntryPointEntity> entities)
Creates a collection ofHostEntryPointEntity
and adds it to the persistent store.- Specified by:
create
in interfaceHostEntryPointEntityDao
-
update
public void update(Collection<? extends HostEntryPointEntity> entities)
Updates a collection ofHostEntryPointEntity
in the persistent store.- Specified by:
update
in interfaceHostEntryPointEntityDao
-
remove
public void remove(Collection<? extends HostEntryPointEntity> entities)
Removes a collection ofHostEntryPointEntity
from the persistent store.- Specified by:
remove
in interfaceHostEntryPointEntityDao
-
remove
public void remove(Long id)
Removes an instance ofHostEntryPointEntity
from the persistent store.- Specified by:
remove
in interfaceHostEntryPointEntityDao
-
query
public List<HostEntryPointEntity> query(String queryString, Parameter[] parameters)
Query ofHostEntryPointEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceHostEntryPointEntityDao
-
query
public List<HostEntryPointEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostEntryPointEntity
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 interfaceHostEntryPointEntityDao
-
-