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