Package com.soffid.iam.model
Class DefaultObjectMappingEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.DefaultObjectMappingEntityDaoBase
-
- All Implemented Interfaces:
DefaultObjectMappingEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
DefaultObjectMappingEntityDaoImpl
public abstract class DefaultObjectMappingEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements DefaultObjectMappingEntityDao
DAO Base for Entity DefaultObjectMappingEntity
-
-
Constructor Summary
Constructors Constructor Description DefaultObjectMappingEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(DefaultObjectMappingEntity entity)Adds an instance ofDefaultObjectMappingEntityto the persistent store.voidcreate(Collection<? extends DefaultObjectMappingEntity> entities)Creates a collection ofDefaultObjectMappingEntityand adds it to the persistent store.AgentDescriptorEntityDaogetAgentDescriptorEntityDao()Gets reference toagentDescriptorEntityDao.DefaultAttributeMappingEntityDaogetDefaultAttributeMappingEntityDao()Gets reference todefaultAttributeMappingEntityDao.DefaultObjectMappingPropertyEntityDaogetDefaultObjectMappingPropertyEntityDao()Gets reference todefaultObjectMappingPropertyEntityDao.DefaultObjectMappingEntityload(Long id)Loads an instance ofDefaultObjectMappingEntityfrom the persistent store.List<DefaultObjectMappingEntity>loadAll()Loads all instances ofDefaultObjectMappingEntityfrom the persistent store.DefaultObjectMappingEntitynewDefaultObjectMappingEntity()Creates an instance ofDefaultObjectMappingEntity.List<DefaultObjectMappingEntity>query(String queryString, Parameter[] parameters)Query ofDefaultObjectMappingEntityfrom the persistent store.List<DefaultObjectMappingEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofDefaultObjectMappingEntityfrom the persistent store.voidremove(DefaultObjectMappingEntity entity)Removes an instance ofDefaultObjectMappingEntityfrom the persistent store.voidremove(Long id)Removes an instance ofDefaultObjectMappingEntityfrom the persistent store.voidremove(Collection<? extends DefaultObjectMappingEntity> entities)Removes a collection ofDefaultObjectMappingEntityfrom the persistent store.voidsetAgentDescriptorEntityDao(AgentDescriptorEntityDao agentDescriptorEntityDao)Sets reference toagentDescriptorEntityDao.voidsetDefaultAttributeMappingEntityDao(DefaultAttributeMappingEntityDao defaultAttributeMappingEntityDao)Sets reference todefaultAttributeMappingEntityDao.voidsetDefaultObjectMappingPropertyEntityDao(DefaultObjectMappingPropertyEntityDao defaultObjectMappingPropertyEntityDao)Sets reference todefaultObjectMappingPropertyEntityDao.voidupdate(DefaultObjectMappingEntity entity)Updates an instance ofDefaultObjectMappingEntityat the persistent store.voidupdate(Collection<? extends DefaultObjectMappingEntity> entities)Updates a collection ofDefaultObjectMappingEntityin 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
-
setAgentDescriptorEntityDao
public void setAgentDescriptorEntityDao(AgentDescriptorEntityDao agentDescriptorEntityDao)
Sets reference toagentDescriptorEntityDao.
-
getAgentDescriptorEntityDao
public AgentDescriptorEntityDao getAgentDescriptorEntityDao()
Gets reference toagentDescriptorEntityDao.
-
setDefaultAttributeMappingEntityDao
public void setDefaultAttributeMappingEntityDao(DefaultAttributeMappingEntityDao defaultAttributeMappingEntityDao)
Sets reference todefaultAttributeMappingEntityDao.
-
getDefaultAttributeMappingEntityDao
public DefaultAttributeMappingEntityDao getDefaultAttributeMappingEntityDao()
Gets reference todefaultAttributeMappingEntityDao.
-
setDefaultObjectMappingPropertyEntityDao
public void setDefaultObjectMappingPropertyEntityDao(DefaultObjectMappingPropertyEntityDao defaultObjectMappingPropertyEntityDao)
Sets reference todefaultObjectMappingPropertyEntityDao.
-
getDefaultObjectMappingPropertyEntityDao
public DefaultObjectMappingPropertyEntityDao getDefaultObjectMappingPropertyEntityDao()
Gets reference todefaultObjectMappingPropertyEntityDao.
-
newDefaultObjectMappingEntity
public DefaultObjectMappingEntity newDefaultObjectMappingEntity()
Creates an instance ofDefaultObjectMappingEntity.- Specified by:
newDefaultObjectMappingEntityin interfaceDefaultObjectMappingEntityDao
-
load
public DefaultObjectMappingEntity load(Long id)
Loads an instance ofDefaultObjectMappingEntityfrom the persistent store.- Specified by:
loadin interfaceDefaultObjectMappingEntityDao
-
loadAll
public List<DefaultObjectMappingEntity> loadAll()
Loads all instances ofDefaultObjectMappingEntityfrom the persistent store.- Specified by:
loadAllin interfaceDefaultObjectMappingEntityDao
-
create
public void create(DefaultObjectMappingEntity entity)
Adds an instance ofDefaultObjectMappingEntityto the persistent store.- Specified by:
createin interfaceDefaultObjectMappingEntityDao
-
update
public void update(DefaultObjectMappingEntity entity)
Updates an instance ofDefaultObjectMappingEntityat the persistent store.- Specified by:
updatein interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(DefaultObjectMappingEntity entity)
Removes an instance ofDefaultObjectMappingEntityfrom the persistent store.- Specified by:
removein interfaceDefaultObjectMappingEntityDao
-
create
public void create(Collection<? extends DefaultObjectMappingEntity> entities)
Creates a collection ofDefaultObjectMappingEntityand adds it to the persistent store.- Specified by:
createin interfaceDefaultObjectMappingEntityDao
-
update
public void update(Collection<? extends DefaultObjectMappingEntity> entities)
Updates a collection ofDefaultObjectMappingEntityin the persistent store.- Specified by:
updatein interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(Collection<? extends DefaultObjectMappingEntity> entities)
Removes a collection ofDefaultObjectMappingEntityfrom the persistent store.- Specified by:
removein interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(Long id)
Removes an instance ofDefaultObjectMappingEntityfrom the persistent store.- Specified by:
removein interfaceDefaultObjectMappingEntityDao
-
query
public List<DefaultObjectMappingEntity> query(String queryString, Parameter[] parameters)
Query ofDefaultObjectMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceDefaultObjectMappingEntityDao
-
query
public List<DefaultObjectMappingEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultObjectMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceDefaultObjectMappingEntityDao
-
-