Package com.soffid.iam.model
Class SoDRoleEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.SoDRoleEntityDaoBase
-
- All Implemented Interfaces:
SoDRoleEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
SoDRoleEntityDaoImpl
public abstract class SoDRoleEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements SoDRoleEntityDao
DAO Base for Entity SoDRoleEntity
-
-
Constructor Summary
Constructors Constructor Description SoDRoleEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(SoDRoleEntity entity)Adds an instance ofSoDRoleEntityto the persistent store.voidcreate(Collection<? extends SoDRoleEntity> entities)Creates a collection ofSoDRoleEntityand adds it to the persistent store.RoleEntityDaogetRoleEntityDao()Gets reference torolEntityDao.SoDRuleEntityDaogetSoDRuleEntityDao()Gets reference tosoDRuleEntityDao.SoDRuleMatrixEntityDaogetSoDRuleMatrixEntityDao()Gets reference tosoDRuleMatrixEntityDao.SoDRoleEntityload(Long id)Loads an instance ofSoDRoleEntityfrom the persistent store.List<SoDRoleEntity>loadAll()Loads all instances ofSoDRoleEntityfrom the persistent store.SoDRoleEntitynewSoDRoleEntity()Creates an instance ofSoDRoleEntity.List<SoDRoleEntity>query(String queryString, Parameter[] parameters)Query ofSoDRoleEntityfrom the persistent store.List<SoDRoleEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofSoDRoleEntityfrom the persistent store.voidremove(SoDRoleEntity entity)Removes an instance ofSoDRoleEntityfrom the persistent store.voidremove(Long id)Removes an instance ofSoDRoleEntityfrom the persistent store.voidremove(Collection<? extends SoDRoleEntity> entities)Removes a collection ofSoDRoleEntityfrom the persistent store.voidsetRoleEntityDao(RoleEntityDao rolEntityDao)Sets reference torolEntityDao.voidsetSoDRuleEntityDao(SoDRuleEntityDao soDRuleEntityDao)Sets reference tosoDRuleEntityDao.voidsetSoDRuleMatrixEntityDao(SoDRuleMatrixEntityDao soDRuleMatrixEntityDao)Sets reference tosoDRuleMatrixEntityDao.SoDRoleEntitysoDRoleToEntity(com.soffid.iam.api.SoDRole instance)Transforms fromSoDRoleobjectvoidsoDRoleToEntity(com.soffid.iam.api.SoDRole source, SoDRoleEntity target, boolean copyIfNull)Copy data fromSoDRoleobjectList<SoDRoleEntity>soDRoleToEntityList(Collection<com.soffid.iam.api.SoDRole> instances)Transforms fromSoDRolelistcom.soffid.iam.api.SoDRoletoSoDRole(SoDRoleEntity entity)Transforms toSoDRoleobjectvoidtoSoDRole(SoDRoleEntity source, com.soffid.iam.api.SoDRole target)Copy data toSoDRoleobjectList<com.soffid.iam.api.SoDRole>toSoDRoleList(Collection<SoDRoleEntity> instances)Transforms toSoDRolelistvoidupdate(SoDRoleEntity entity)Updates an instance ofSoDRoleEntityat the persistent store.voidupdate(Collection<? extends SoDRoleEntity> entities)Updates a collection ofSoDRoleEntityin 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
-
setRoleEntityDao
public void setRoleEntityDao(RoleEntityDao rolEntityDao)
Sets reference torolEntityDao.
-
getRoleEntityDao
public RoleEntityDao getRoleEntityDao()
Gets reference torolEntityDao.
-
setSoDRuleEntityDao
public void setSoDRuleEntityDao(SoDRuleEntityDao soDRuleEntityDao)
Sets reference tosoDRuleEntityDao.
-
getSoDRuleEntityDao
public SoDRuleEntityDao getSoDRuleEntityDao()
Gets reference tosoDRuleEntityDao.
-
setSoDRuleMatrixEntityDao
public void setSoDRuleMatrixEntityDao(SoDRuleMatrixEntityDao soDRuleMatrixEntityDao)
Sets reference tosoDRuleMatrixEntityDao.
-
getSoDRuleMatrixEntityDao
public SoDRuleMatrixEntityDao getSoDRuleMatrixEntityDao()
Gets reference tosoDRuleMatrixEntityDao.
-
toSoDRole
public void toSoDRole(SoDRoleEntity source, com.soffid.iam.api.SoDRole target)
Copy data toSoDRoleobject- Specified by:
toSoDRolein interfaceSoDRoleEntityDao
-
toSoDRole
public com.soffid.iam.api.SoDRole toSoDRole(SoDRoleEntity entity)
Transforms toSoDRoleobject- Specified by:
toSoDRolein interfaceSoDRoleEntityDao
-
toSoDRoleList
public List<com.soffid.iam.api.SoDRole> toSoDRoleList(Collection<SoDRoleEntity> instances)
Transforms toSoDRolelist- Specified by:
toSoDRoleListin interfaceSoDRoleEntityDao
-
soDRoleToEntity
public void soDRoleToEntity(com.soffid.iam.api.SoDRole source, SoDRoleEntity target, boolean copyIfNull)Copy data fromSoDRoleobject- Specified by:
soDRoleToEntityin interfaceSoDRoleEntityDao
-
soDRoleToEntity
public SoDRoleEntity soDRoleToEntity(com.soffid.iam.api.SoDRole instance)
Transforms fromSoDRoleobject- Specified by:
soDRoleToEntityin interfaceSoDRoleEntityDao
-
soDRoleToEntityList
public List<SoDRoleEntity> soDRoleToEntityList(Collection<com.soffid.iam.api.SoDRole> instances)
Transforms fromSoDRolelist- Specified by:
soDRoleToEntityListin interfaceSoDRoleEntityDao
-
newSoDRoleEntity
public SoDRoleEntity newSoDRoleEntity()
Creates an instance ofSoDRoleEntity.- Specified by:
newSoDRoleEntityin interfaceSoDRoleEntityDao
-
load
public SoDRoleEntity load(Long id)
Loads an instance ofSoDRoleEntityfrom the persistent store.- Specified by:
loadin interfaceSoDRoleEntityDao
-
loadAll
public List<SoDRoleEntity> loadAll()
Loads all instances ofSoDRoleEntityfrom the persistent store.- Specified by:
loadAllin interfaceSoDRoleEntityDao
-
create
public void create(SoDRoleEntity entity)
Adds an instance ofSoDRoleEntityto the persistent store.- Specified by:
createin interfaceSoDRoleEntityDao
-
update
public void update(SoDRoleEntity entity)
Updates an instance ofSoDRoleEntityat the persistent store.- Specified by:
updatein interfaceSoDRoleEntityDao
-
remove
public void remove(SoDRoleEntity entity)
Removes an instance ofSoDRoleEntityfrom the persistent store.- Specified by:
removein interfaceSoDRoleEntityDao
-
create
public void create(Collection<? extends SoDRoleEntity> entities)
Creates a collection ofSoDRoleEntityand adds it to the persistent store.- Specified by:
createin interfaceSoDRoleEntityDao
-
update
public void update(Collection<? extends SoDRoleEntity> entities)
Updates a collection ofSoDRoleEntityin the persistent store.- Specified by:
updatein interfaceSoDRoleEntityDao
-
remove
public void remove(Collection<? extends SoDRoleEntity> entities)
Removes a collection ofSoDRoleEntityfrom the persistent store.- Specified by:
removein interfaceSoDRoleEntityDao
-
remove
public void remove(Long id)
Removes an instance ofSoDRoleEntityfrom the persistent store.- Specified by:
removein interfaceSoDRoleEntityDao
-
query
public List<SoDRoleEntity> query(String queryString, Parameter[] parameters)
Query ofSoDRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceSoDRoleEntityDao
-
query
public List<SoDRoleEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSoDRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceSoDRoleEntityDao
-
-