Package com.soffid.iam.model
Class RuleAssignedRoleEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.RuleAssignedRoleEntityDaoBase
-
- All Implemented Interfaces:
RuleAssignedRoleEntityDao,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
RuleAssignedRoleEntityDaoImpl
public abstract class RuleAssignedRoleEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements RuleAssignedRoleEntityDao
DAO Base for Entity RuleAssignedRoleEntity
-
-
Constructor Summary
Constructors Constructor Description RuleAssignedRoleEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcreate(RuleAssignedRoleEntity entity)Adds an instance ofRuleAssignedRoleEntityto the persistent store.voidcreate(Collection<? extends RuleAssignedRoleEntity> entities)Creates a collection ofRuleAssignedRoleEntityand adds it to the persistent store.RoleEntityDaogetRoleEntityDao()Gets reference torolEntityDao.RuleEntityDaogetRuleEntityDao()Gets reference toruleEntityDao.RuleAssignedRoleEntityload(Long id)Loads an instance ofRuleAssignedRoleEntityfrom the persistent store.List<RuleAssignedRoleEntity>loadAll()Loads all instances ofRuleAssignedRoleEntityfrom the persistent store.RuleAssignedRoleEntitynewRuleAssignedRoleEntity()Creates an instance ofRuleAssignedRoleEntity.List<RuleAssignedRoleEntity>query(String queryString, Parameter[] parameters)Query ofRuleAssignedRoleEntityfrom the persistent store.List<RuleAssignedRoleEntity>query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofRuleAssignedRoleEntityfrom the persistent store.voidremove(RuleAssignedRoleEntity entity)Removes an instance ofRuleAssignedRoleEntityfrom the persistent store.voidremove(Long id)Removes an instance ofRuleAssignedRoleEntityfrom the persistent store.voidremove(Collection<? extends RuleAssignedRoleEntity> entities)Removes a collection ofRuleAssignedRoleEntityfrom the persistent store.RuleAssignedRoleEntityruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole instance)Transforms fromRuleAssignedRoleobjectvoidruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole source, RuleAssignedRoleEntity target, boolean copyIfNull)Copy data fromRuleAssignedRoleobjectList<RuleAssignedRoleEntity>ruleAssignedRoleToEntityList(Collection<com.soffid.iam.api.RuleAssignedRole> instances)Transforms fromRuleAssignedRolelistvoidsetRoleEntityDao(RoleEntityDao rolEntityDao)Sets reference torolEntityDao.voidsetRuleEntityDao(RuleEntityDao ruleEntityDao)Sets reference toruleEntityDao.com.soffid.iam.api.RuleAssignedRoletoRuleAssignedRole(RuleAssignedRoleEntity entity)Transforms toRuleAssignedRoleobjectvoidtoRuleAssignedRole(RuleAssignedRoleEntity source, com.soffid.iam.api.RuleAssignedRole target)Copy data toRuleAssignedRoleobjectList<com.soffid.iam.api.RuleAssignedRole>toRuleAssignedRoleList(Collection<RuleAssignedRoleEntity> instances)Transforms toRuleAssignedRolelistvoidupdate(RuleAssignedRoleEntity entity)Updates an instance ofRuleAssignedRoleEntityat the persistent store.voidupdate(Collection<? extends RuleAssignedRoleEntity> entities)Updates a collection ofRuleAssignedRoleEntityin 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.
-
setRuleEntityDao
public void setRuleEntityDao(RuleEntityDao ruleEntityDao)
Sets reference toruleEntityDao.
-
getRuleEntityDao
public RuleEntityDao getRuleEntityDao()
Gets reference toruleEntityDao.
-
toRuleAssignedRole
public void toRuleAssignedRole(RuleAssignedRoleEntity source, com.soffid.iam.api.RuleAssignedRole target)
Copy data toRuleAssignedRoleobject- Specified by:
toRuleAssignedRolein interfaceRuleAssignedRoleEntityDao
-
toRuleAssignedRole
public com.soffid.iam.api.RuleAssignedRole toRuleAssignedRole(RuleAssignedRoleEntity entity)
Transforms toRuleAssignedRoleobject- Specified by:
toRuleAssignedRolein interfaceRuleAssignedRoleEntityDao
-
toRuleAssignedRoleList
public List<com.soffid.iam.api.RuleAssignedRole> toRuleAssignedRoleList(Collection<RuleAssignedRoleEntity> instances)
Transforms toRuleAssignedRolelist- Specified by:
toRuleAssignedRoleListin interfaceRuleAssignedRoleEntityDao
-
ruleAssignedRoleToEntity
public void ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole source, RuleAssignedRoleEntity target, boolean copyIfNull)Copy data fromRuleAssignedRoleobject- Specified by:
ruleAssignedRoleToEntityin interfaceRuleAssignedRoleEntityDao
-
ruleAssignedRoleToEntity
public RuleAssignedRoleEntity ruleAssignedRoleToEntity(com.soffid.iam.api.RuleAssignedRole instance)
Transforms fromRuleAssignedRoleobject- Specified by:
ruleAssignedRoleToEntityin interfaceRuleAssignedRoleEntityDao
-
ruleAssignedRoleToEntityList
public List<RuleAssignedRoleEntity> ruleAssignedRoleToEntityList(Collection<com.soffid.iam.api.RuleAssignedRole> instances)
Transforms fromRuleAssignedRolelist- Specified by:
ruleAssignedRoleToEntityListin interfaceRuleAssignedRoleEntityDao
-
newRuleAssignedRoleEntity
public RuleAssignedRoleEntity newRuleAssignedRoleEntity()
Creates an instance ofRuleAssignedRoleEntity.- Specified by:
newRuleAssignedRoleEntityin interfaceRuleAssignedRoleEntityDao
-
load
public RuleAssignedRoleEntity load(Long id)
Loads an instance ofRuleAssignedRoleEntityfrom the persistent store.- Specified by:
loadin interfaceRuleAssignedRoleEntityDao
-
loadAll
public List<RuleAssignedRoleEntity> loadAll()
Loads all instances ofRuleAssignedRoleEntityfrom the persistent store.- Specified by:
loadAllin interfaceRuleAssignedRoleEntityDao
-
create
public void create(RuleAssignedRoleEntity entity)
Adds an instance ofRuleAssignedRoleEntityto the persistent store.- Specified by:
createin interfaceRuleAssignedRoleEntityDao
-
update
public void update(RuleAssignedRoleEntity entity)
Updates an instance ofRuleAssignedRoleEntityat the persistent store.- Specified by:
updatein interfaceRuleAssignedRoleEntityDao
-
remove
public void remove(RuleAssignedRoleEntity entity)
Removes an instance ofRuleAssignedRoleEntityfrom the persistent store.- Specified by:
removein interfaceRuleAssignedRoleEntityDao
-
create
public void create(Collection<? extends RuleAssignedRoleEntity> entities)
Creates a collection ofRuleAssignedRoleEntityand adds it to the persistent store.- Specified by:
createin interfaceRuleAssignedRoleEntityDao
-
update
public void update(Collection<? extends RuleAssignedRoleEntity> entities)
Updates a collection ofRuleAssignedRoleEntityin the persistent store.- Specified by:
updatein interfaceRuleAssignedRoleEntityDao
-
remove
public void remove(Collection<? extends RuleAssignedRoleEntity> entities)
Removes a collection ofRuleAssignedRoleEntityfrom the persistent store.- Specified by:
removein interfaceRuleAssignedRoleEntityDao
-
remove
public void remove(Long id)
Removes an instance ofRuleAssignedRoleEntityfrom the persistent store.- Specified by:
removein interfaceRuleAssignedRoleEntityDao
-
query
public List<RuleAssignedRoleEntity> query(String queryString, Parameter[] parameters)
Query ofRuleAssignedRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
queryin interfaceRuleAssignedRoleEntityDao
-
query
public List<RuleAssignedRoleEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRuleAssignedRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return- Specified by:
queryin interfaceRuleAssignedRoleEntityDao
-
-