Package com.soffid.iam.model
Class GroupAttributeEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.GroupAttributeEntityDaoBase
-
- All Implemented Interfaces:
GroupAttributeEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
GroupAttributeEntityDaoImpl
public abstract class GroupAttributeEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements GroupAttributeEntityDao
DAO Base for Entity GroupAttributeEntity
-
-
Constructor Summary
Constructors Constructor Description GroupAttributeEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(GroupAttributeEntity entity)Adds an instance ofGroupAttributeEntityto the persistent store.voidcreate(Collection<? extends GroupAttributeEntity> entities)Creates a collection ofGroupAttributeEntityand adds it to the persistent store.List<GroupAttributeEntity>findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)CriteriaSearchConfiguration implementationList<GroupAttributeEntity>findByNameAndValue(String queryString, CriteriaSearchConfiguration criteria, String name, String value)Internal implementationList<GroupAttributeEntity>findByNameAndValue(String name, String value)Operation findByNameAndValueAuditEntityDaogetAuditEntityDao()Gets reference toauditoriaEntityDao.com.soffid.iam.service.AuthorizationServicegetAuthorizationService()Gets reference toautoritzacioService.GroupEntityDaogetGroupEntityDao()Gets reference togrupEntityDao.MetaDataEntityDaogetMetaDataEntityDao()Gets reference totipusDadaEntityDao.GroupAttributeEntityload(Long id)Loads an instance ofGroupAttributeEntityfrom the persistent store.List<GroupAttributeEntity>loadAll()Loads all instances ofGroupAttributeEntityfrom the persistent store.GroupAttributeEntitynewGroupAttributeEntity()Creates an instance ofGroupAttributeEntity.List<GroupAttributeEntity>query(String queryString, Parameter[] parameters)Query ofGroupAttributeEntityfrom the persistent store.List<GroupAttributeEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofGroupAttributeEntityfrom the persistent store.voidremove(GroupAttributeEntity entity)Removes an instance ofGroupAttributeEntityfrom the persistent store.voidremove(Long id)Removes an instance ofGroupAttributeEntityfrom the persistent store.voidremove(Collection<? extends GroupAttributeEntity> entities)Removes a collection ofGroupAttributeEntityfrom the persistent store.voidsetAuditEntityDao(AuditEntityDao auditoriaEntityDao)Sets reference toauditoriaEntityDao.voidsetAuthorizationService(com.soffid.iam.service.AuthorizationService autoritzacioService)Sets reference toautoritzacioService.voidsetGroupEntityDao(GroupEntityDao grupEntityDao)Sets reference togrupEntityDao.voidsetMetaDataEntityDao(MetaDataEntityDao tipusDadaEntityDao)Sets reference totipusDadaEntityDao.voidupdate(GroupAttributeEntity entity)Updates an instance ofGroupAttributeEntityat the persistent store.voidupdate(Collection<? extends GroupAttributeEntity> entities)Updates a collection ofGroupAttributeEntityin 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
-
setAuditEntityDao
public void setAuditEntityDao(AuditEntityDao auditoriaEntityDao)
Sets reference toauditoriaEntityDao.
-
getAuditEntityDao
public AuditEntityDao getAuditEntityDao()
Gets reference toauditoriaEntityDao.
-
setAuthorizationService
public void setAuthorizationService(com.soffid.iam.service.AuthorizationService autoritzacioService)
Sets reference toautoritzacioService.
-
getAuthorizationService
public com.soffid.iam.service.AuthorizationService getAuthorizationService()
Gets reference toautoritzacioService.
-
setGroupEntityDao
public void setGroupEntityDao(GroupEntityDao grupEntityDao)
Sets reference togrupEntityDao.
-
getGroupEntityDao
public GroupEntityDao getGroupEntityDao()
Gets reference togrupEntityDao.
-
setMetaDataEntityDao
public void setMetaDataEntityDao(MetaDataEntityDao tipusDadaEntityDao)
Sets reference totipusDadaEntityDao.
-
getMetaDataEntityDao
public MetaDataEntityDao getMetaDataEntityDao()
Gets reference totipusDadaEntityDao.
-
findByNameAndValue
public List<GroupAttributeEntity> findByNameAndValue(String name, String value)
Operation findByNameAndValue- Specified by:
findByNameAndValuein interfaceGroupAttributeEntityDao- Parameters:
name-value-- Returns:
-
findByNameAndValue
public List<GroupAttributeEntity> findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration implementation- Specified by:
findByNameAndValuein interfaceGroupAttributeEntityDao
-
findByNameAndValue
public List<GroupAttributeEntity> findByNameAndValue(String queryString, CriteriaSearchConfiguration criteria, String name, String value)
Internal implementation
-
newGroupAttributeEntity
public GroupAttributeEntity newGroupAttributeEntity()
Creates an instance ofGroupAttributeEntity.- Specified by:
newGroupAttributeEntityin interfaceGroupAttributeEntityDao
-
load
public GroupAttributeEntity load(Long id)
Loads an instance ofGroupAttributeEntityfrom the persistent store.- Specified by:
loadin interfaceGroupAttributeEntityDao
-
loadAll
public List<GroupAttributeEntity> loadAll()
Loads all instances ofGroupAttributeEntityfrom the persistent store.- Specified by:
loadAllin interfaceGroupAttributeEntityDao
-
create
public void create(GroupAttributeEntity entity)
Adds an instance ofGroupAttributeEntityto the persistent store.- Specified by:
createin interfaceGroupAttributeEntityDao
-
update
public void update(GroupAttributeEntity entity)
Updates an instance ofGroupAttributeEntityat the persistent store.- Specified by:
updatein interfaceGroupAttributeEntityDao
-
remove
public void remove(GroupAttributeEntity entity)
Removes an instance ofGroupAttributeEntityfrom the persistent store.- Specified by:
removein interfaceGroupAttributeEntityDao
-
create
public void create(Collection<? extends GroupAttributeEntity> entities)
Creates a collection ofGroupAttributeEntityand adds it to the persistent store.- Specified by:
createin interfaceGroupAttributeEntityDao
-
update
public void update(Collection<? extends GroupAttributeEntity> entities)
Updates a collection ofGroupAttributeEntityin the persistent store.- Specified by:
updatein interfaceGroupAttributeEntityDao
-
remove
public void remove(Collection<? extends GroupAttributeEntity> entities)
Removes a collection ofGroupAttributeEntityfrom the persistent store.- Specified by:
removein interfaceGroupAttributeEntityDao
-
remove
public void remove(Long id)
Removes an instance ofGroupAttributeEntityfrom the persistent store.- Specified by:
removein interfaceGroupAttributeEntityDao
-
query
public List<GroupAttributeEntity> query(String queryString, Parameter[] parameters)
Query ofGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceGroupAttributeEntityDao
-
query
public List<GroupAttributeEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceGroupAttributeEntityDao
-
-