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 void
create(SoDRoleEntity entity)
Adds an instance ofSoDRoleEntity
to the persistent store.void
create(Collection<? extends SoDRoleEntity> entities)
Creates a collection ofSoDRoleEntity
and adds it to the persistent store.RoleEntityDao
getRoleEntityDao()
Gets reference torolEntityDao
.SoDRuleEntityDao
getSoDRuleEntityDao()
Gets reference tosoDRuleEntityDao
.SoDRuleMatrixEntityDao
getSoDRuleMatrixEntityDao()
Gets reference tosoDRuleMatrixEntityDao
.SoDRoleEntity
load(Long id)
Loads an instance ofSoDRoleEntity
from the persistent store.List<SoDRoleEntity>
loadAll()
Loads all instances ofSoDRoleEntity
from the persistent store.SoDRoleEntity
newSoDRoleEntity()
Creates an instance ofSoDRoleEntity
.List<SoDRoleEntity>
query(String queryString, Parameter[] parameters)
Query ofSoDRoleEntity
from the persistent store.List<SoDRoleEntity>
query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSoDRoleEntity
from the persistent store.void
remove(SoDRoleEntity entity)
Removes an instance ofSoDRoleEntity
from the persistent store.void
remove(Long id)
Removes an instance ofSoDRoleEntity
from the persistent store.void
remove(Collection<? extends SoDRoleEntity> entities)
Removes a collection ofSoDRoleEntity
from the persistent store.void
setRoleEntityDao(RoleEntityDao rolEntityDao)
Sets reference torolEntityDao
.void
setSoDRuleEntityDao(SoDRuleEntityDao soDRuleEntityDao)
Sets reference tosoDRuleEntityDao
.void
setSoDRuleMatrixEntityDao(SoDRuleMatrixEntityDao soDRuleMatrixEntityDao)
Sets reference tosoDRuleMatrixEntityDao
.SoDRoleEntity
soDRoleToEntity(com.soffid.iam.api.SoDRole instance)
Transforms fromSoDRole
objectvoid
soDRoleToEntity(com.soffid.iam.api.SoDRole source, SoDRoleEntity target, boolean copyIfNull)
Copy data fromSoDRole
objectList<SoDRoleEntity>
soDRoleToEntityList(Collection<com.soffid.iam.api.SoDRole> instances)
Transforms fromSoDRole
listcom.soffid.iam.api.SoDRole
toSoDRole(SoDRoleEntity entity)
Transforms toSoDRole
objectvoid
toSoDRole(SoDRoleEntity source, com.soffid.iam.api.SoDRole target)
Copy data toSoDRole
objectList<com.soffid.iam.api.SoDRole>
toSoDRoleList(Collection<SoDRoleEntity> instances)
Transforms toSoDRole
listvoid
update(SoDRoleEntity entity)
Updates an instance ofSoDRoleEntity
at the persistent store.void
update(Collection<? extends SoDRoleEntity> entities)
Updates a collection ofSoDRoleEntity
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
-
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 toSoDRole
object- Specified by:
toSoDRole
in interfaceSoDRoleEntityDao
-
toSoDRole
public com.soffid.iam.api.SoDRole toSoDRole(SoDRoleEntity entity)
Transforms toSoDRole
object- Specified by:
toSoDRole
in interfaceSoDRoleEntityDao
-
toSoDRoleList
public List<com.soffid.iam.api.SoDRole> toSoDRoleList(Collection<SoDRoleEntity> instances)
Transforms toSoDRole
list- Specified by:
toSoDRoleList
in interfaceSoDRoleEntityDao
-
soDRoleToEntity
public void soDRoleToEntity(com.soffid.iam.api.SoDRole source, SoDRoleEntity target, boolean copyIfNull)
Copy data fromSoDRole
object- Specified by:
soDRoleToEntity
in interfaceSoDRoleEntityDao
-
soDRoleToEntity
public SoDRoleEntity soDRoleToEntity(com.soffid.iam.api.SoDRole instance)
Transforms fromSoDRole
object- Specified by:
soDRoleToEntity
in interfaceSoDRoleEntityDao
-
soDRoleToEntityList
public List<SoDRoleEntity> soDRoleToEntityList(Collection<com.soffid.iam.api.SoDRole> instances)
Transforms fromSoDRole
list- Specified by:
soDRoleToEntityList
in interfaceSoDRoleEntityDao
-
newSoDRoleEntity
public SoDRoleEntity newSoDRoleEntity()
Creates an instance ofSoDRoleEntity
.- Specified by:
newSoDRoleEntity
in interfaceSoDRoleEntityDao
-
load
public SoDRoleEntity load(Long id)
Loads an instance ofSoDRoleEntity
from the persistent store.- Specified by:
load
in interfaceSoDRoleEntityDao
-
loadAll
public List<SoDRoleEntity> loadAll()
Loads all instances ofSoDRoleEntity
from the persistent store.- Specified by:
loadAll
in interfaceSoDRoleEntityDao
-
create
public void create(SoDRoleEntity entity)
Adds an instance ofSoDRoleEntity
to the persistent store.- Specified by:
create
in interfaceSoDRoleEntityDao
-
update
public void update(SoDRoleEntity entity)
Updates an instance ofSoDRoleEntity
at the persistent store.- Specified by:
update
in interfaceSoDRoleEntityDao
-
remove
public void remove(SoDRoleEntity entity)
Removes an instance ofSoDRoleEntity
from the persistent store.- Specified by:
remove
in interfaceSoDRoleEntityDao
-
create
public void create(Collection<? extends SoDRoleEntity> entities)
Creates a collection ofSoDRoleEntity
and adds it to the persistent store.- Specified by:
create
in interfaceSoDRoleEntityDao
-
update
public void update(Collection<? extends SoDRoleEntity> entities)
Updates a collection ofSoDRoleEntity
in the persistent store.- Specified by:
update
in interfaceSoDRoleEntityDao
-
remove
public void remove(Collection<? extends SoDRoleEntity> entities)
Removes a collection ofSoDRoleEntity
from the persistent store.- Specified by:
remove
in interfaceSoDRoleEntityDao
-
remove
public void remove(Long id)
Removes an instance ofSoDRoleEntity
from the persistent store.- Specified by:
remove
in interfaceSoDRoleEntityDao
-
query
public List<SoDRoleEntity> query(String queryString, Parameter[] parameters)
Query ofSoDRoleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceSoDRoleEntityDao
-
query
public List<SoDRoleEntity> query(String queryString, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSoDRoleEntity
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 interfaceSoDRoleEntityDao
-
-