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 void
create(DefaultObjectMappingEntity entity)
Adds an instance ofDefaultObjectMappingEntity
to the persistent store.void
create(Collection<? extends DefaultObjectMappingEntity> entities)
Creates a collection ofDefaultObjectMappingEntity
and adds it to the persistent store.AgentDescriptorEntityDao
getAgentDescriptorEntityDao()
Gets reference toagentDescriptorEntityDao
.DefaultAttributeMappingEntityDao
getDefaultAttributeMappingEntityDao()
Gets reference todefaultAttributeMappingEntityDao
.DefaultObjectMappingPropertyEntityDao
getDefaultObjectMappingPropertyEntityDao()
Gets reference todefaultObjectMappingPropertyEntityDao
.DefaultObjectMappingEntity
load(Long id)
Loads an instance ofDefaultObjectMappingEntity
from the persistent store.List<DefaultObjectMappingEntity>
loadAll()
Loads all instances ofDefaultObjectMappingEntity
from the persistent store.DefaultObjectMappingEntity
newDefaultObjectMappingEntity()
Creates an instance ofDefaultObjectMappingEntity
.List<DefaultObjectMappingEntity>
query(String queryString, Parameter[] parameters)
Query ofDefaultObjectMappingEntity
from the persistent store.List<DefaultObjectMappingEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultObjectMappingEntity
from the persistent store.void
remove(DefaultObjectMappingEntity entity)
Removes an instance ofDefaultObjectMappingEntity
from the persistent store.void
remove(Long id)
Removes an instance ofDefaultObjectMappingEntity
from the persistent store.void
remove(Collection<? extends DefaultObjectMappingEntity> entities)
Removes a collection ofDefaultObjectMappingEntity
from the persistent store.void
setAgentDescriptorEntityDao(AgentDescriptorEntityDao agentDescriptorEntityDao)
Sets reference toagentDescriptorEntityDao
.void
setDefaultAttributeMappingEntityDao(DefaultAttributeMappingEntityDao defaultAttributeMappingEntityDao)
Sets reference todefaultAttributeMappingEntityDao
.void
setDefaultObjectMappingPropertyEntityDao(DefaultObjectMappingPropertyEntityDao defaultObjectMappingPropertyEntityDao)
Sets reference todefaultObjectMappingPropertyEntityDao
.void
update(DefaultObjectMappingEntity entity)
Updates an instance ofDefaultObjectMappingEntity
at the persistent store.void
update(Collection<? extends DefaultObjectMappingEntity> entities)
Updates a collection ofDefaultObjectMappingEntity
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
-
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:
newDefaultObjectMappingEntity
in interfaceDefaultObjectMappingEntityDao
-
load
public DefaultObjectMappingEntity load(Long id)
Loads an instance ofDefaultObjectMappingEntity
from the persistent store.- Specified by:
load
in interfaceDefaultObjectMappingEntityDao
-
loadAll
public List<DefaultObjectMappingEntity> loadAll()
Loads all instances ofDefaultObjectMappingEntity
from the persistent store.- Specified by:
loadAll
in interfaceDefaultObjectMappingEntityDao
-
create
public void create(DefaultObjectMappingEntity entity)
Adds an instance ofDefaultObjectMappingEntity
to the persistent store.- Specified by:
create
in interfaceDefaultObjectMappingEntityDao
-
update
public void update(DefaultObjectMappingEntity entity)
Updates an instance ofDefaultObjectMappingEntity
at the persistent store.- Specified by:
update
in interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(DefaultObjectMappingEntity entity)
Removes an instance ofDefaultObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultObjectMappingEntityDao
-
create
public void create(Collection<? extends DefaultObjectMappingEntity> entities)
Creates a collection ofDefaultObjectMappingEntity
and adds it to the persistent store.- Specified by:
create
in interfaceDefaultObjectMappingEntityDao
-
update
public void update(Collection<? extends DefaultObjectMappingEntity> entities)
Updates a collection ofDefaultObjectMappingEntity
in the persistent store.- Specified by:
update
in interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(Collection<? extends DefaultObjectMappingEntity> entities)
Removes a collection ofDefaultObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultObjectMappingEntityDao
-
remove
public void remove(Long id)
Removes an instance ofDefaultObjectMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultObjectMappingEntityDao
-
query
public List<DefaultObjectMappingEntity> query(String queryString, Parameter[] parameters)
Query ofDefaultObjectMappingEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceDefaultObjectMappingEntityDao
-
query
public List<DefaultObjectMappingEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultObjectMappingEntity
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 interfaceDefaultObjectMappingEntityDao
-
-