Package com.soffid.iam.model
Class DefaultAttributeMappingEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.DefaultAttributeMappingEntityDaoBase
-
- All Implemented Interfaces:
DefaultAttributeMappingEntityDao
,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
DefaultAttributeMappingEntityDaoImpl
public abstract class DefaultAttributeMappingEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements DefaultAttributeMappingEntityDao
DAO Base for Entity DefaultAttributeMappingEntity
-
-
Constructor Summary
Constructors Constructor Description DefaultAttributeMappingEntityDaoBase()
-
Method Summary
-
Methods inherited from class org.springframework.orm.hibernate3.support.HibernateDaoSupport
checkDaoConfig, closeSessionIfNecessary, convertHibernateAccessException, createHibernateTemplate, getHibernateTemplate, getSession, getSession, getSessionFactory, releaseSession, setHibernateTemplate, setSessionFactory
-
-
-
-
Method Detail
-
setDefaultObjectMappingEntityDao
public void setDefaultObjectMappingEntityDao(DefaultObjectMappingEntityDao defaultObjectMappingEntityDao)
Sets reference todefaultObjectMappingEntityDao
.
-
getDefaultObjectMappingEntityDao
public DefaultObjectMappingEntityDao getDefaultObjectMappingEntityDao()
Gets reference todefaultObjectMappingEntityDao
.
-
newDefaultAttributeMappingEntity
public DefaultAttributeMappingEntity newDefaultAttributeMappingEntity()
Creates an instance ofDefaultAttributeMappingEntity
.- Specified by:
newDefaultAttributeMappingEntity
in interfaceDefaultAttributeMappingEntityDao
-
load
public DefaultAttributeMappingEntity load(Long id)
Loads an instance ofDefaultAttributeMappingEntity
from the persistent store.- Specified by:
load
in interfaceDefaultAttributeMappingEntityDao
-
loadAll
public List<DefaultAttributeMappingEntity> loadAll()
Loads all instances ofDefaultAttributeMappingEntity
from the persistent store.- Specified by:
loadAll
in interfaceDefaultAttributeMappingEntityDao
-
create
public void create(DefaultAttributeMappingEntity entity)
Adds an instance ofDefaultAttributeMappingEntity
to the persistent store.- Specified by:
create
in interfaceDefaultAttributeMappingEntityDao
-
update
public void update(DefaultAttributeMappingEntity entity)
Updates an instance ofDefaultAttributeMappingEntity
at the persistent store.- Specified by:
update
in interfaceDefaultAttributeMappingEntityDao
-
remove
public void remove(DefaultAttributeMappingEntity entity)
Removes an instance ofDefaultAttributeMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultAttributeMappingEntityDao
-
create
public void create(Collection<? extends DefaultAttributeMappingEntity> entities)
Creates a collection ofDefaultAttributeMappingEntity
and adds it to the persistent store.- Specified by:
create
in interfaceDefaultAttributeMappingEntityDao
-
update
public void update(Collection<? extends DefaultAttributeMappingEntity> entities)
Updates a collection ofDefaultAttributeMappingEntity
in the persistent store.- Specified by:
update
in interfaceDefaultAttributeMappingEntityDao
-
remove
public void remove(Collection<? extends DefaultAttributeMappingEntity> entities)
Removes a collection ofDefaultAttributeMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultAttributeMappingEntityDao
-
remove
public void remove(Long id)
Removes an instance ofDefaultAttributeMappingEntity
from the persistent store.- Specified by:
remove
in interfaceDefaultAttributeMappingEntityDao
-
query
public List<DefaultAttributeMappingEntity> query(String queryString, Parameter[] parameters)
Query ofDefaultAttributeMappingEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceDefaultAttributeMappingEntityDao
-
query
public List<DefaultAttributeMappingEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultAttributeMappingEntity
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 interfaceDefaultAttributeMappingEntityDao
-
-