Package com.soffid.iam.reconcile.model
Interface ReconcileRoleEntityDao
-
- All Known Implementing Classes:
ReconcileRoleEntityDaoBase,ReconcileRoleEntityDaoImpl
public interface ReconcileRoleEntityDaoDAO for Entity ReconcileRoleEntity- See Also:
ReconcileRoleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ReconcileRoleEntity entity)Adds an instance ofReconcileRoleEntityto the persistent store.voidcreate(Collection<? extends ReconcileRoleEntity> entities)Creates a collection ofReconcileRoleEntityand adds it to the persistent store.List<ReconcileRoleEntity>findByProcessId(CriteriaSearchConfiguration criteria, Long processId)CriteriaSearchConfiguration finderList<ReconcileRoleEntity>findByProcessId(Long processId)Operation findByProcessIdReconcileRoleEntityload(Long id)Loads an instance ofReconcileRoleEntityfrom the persistent store.List<ReconcileRoleEntity>loadAll()Loads all instances ofReconcileRoleEntityfrom the persistent store.ReconcileRoleEntitynewReconcileRoleEntity()Creates an instance ofReconcileRoleEntity.List<ReconcileRoleEntity>query(String query, Parameter[] parameters)Query ofReconcileRoleEntityfrom the persistent store.List<ReconcileRoleEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofReconcileRoleEntityfrom the persistent store.ReconcileRoleEntityreconcileRoleToEntity(com.soffid.iam.reconcile.common.ReconcileRole instance)Transforms fromReconcileRoleobjectvoidreconcileRoleToEntity(com.soffid.iam.reconcile.common.ReconcileRole source, ReconcileRoleEntity target, boolean copyIfNull)Copy data fromReconcileRoleobjectList<ReconcileRoleEntity>reconcileRoleToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileRole> instances)Transforms fromReconcileRolelistvoidremove(ReconcileRoleEntity entity)Removes an instance ofReconcileRoleEntityfrom the persistent store.voidremove(Long id)Removes an instance ofReconcileRoleEntityfrom the persistent store.voidremove(Collection<? extends ReconcileRoleEntity> entities)Removes a collection ofReconcileRoleEntityfrom the persistent store.com.soffid.iam.reconcile.common.ReconcileRoletoReconcileRole(ReconcileRoleEntity entity)Transforms toReconcileRoleobjectvoidtoReconcileRole(ReconcileRoleEntity source, com.soffid.iam.reconcile.common.ReconcileRole target)Copy data toReconcileRoleobjectList<com.soffid.iam.reconcile.common.ReconcileRole>toReconcileRoleList(Collection<ReconcileRoleEntity> entities)Transforms toReconcileRolelistvoidupdate(ReconcileRoleEntity entity)Updates an instance ofReconcileRoleEntityat the persistent store.voidupdate(Collection<? extends ReconcileRoleEntity> entities)Updates a collection ofReconcileRoleEntityin the persistent store.
-
-
-
Method Detail
-
findByProcessId
List<ReconcileRoleEntity> findByProcessId(Long processId)
Operation findByProcessId- Parameters:
processId-- Returns:
-
findByProcessId
List<ReconcileRoleEntity> findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration finder
-
toReconcileRole
void toReconcileRole(ReconcileRoleEntity source, com.soffid.iam.reconcile.common.ReconcileRole target)
Copy data toReconcileRoleobject
-
toReconcileRole
com.soffid.iam.reconcile.common.ReconcileRole toReconcileRole(ReconcileRoleEntity entity)
Transforms toReconcileRoleobject
-
toReconcileRoleList
List<com.soffid.iam.reconcile.common.ReconcileRole> toReconcileRoleList(Collection<ReconcileRoleEntity> entities)
Transforms toReconcileRolelist
-
reconcileRoleToEntity
void reconcileRoleToEntity(com.soffid.iam.reconcile.common.ReconcileRole source, ReconcileRoleEntity target, boolean copyIfNull)Copy data fromReconcileRoleobject
-
reconcileRoleToEntity
ReconcileRoleEntity reconcileRoleToEntity(com.soffid.iam.reconcile.common.ReconcileRole instance)
Transforms fromReconcileRoleobject
-
reconcileRoleToEntityList
List<ReconcileRoleEntity> reconcileRoleToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileRole> instances)
Transforms fromReconcileRolelist
-
newReconcileRoleEntity
ReconcileRoleEntity newReconcileRoleEntity()
Creates an instance ofReconcileRoleEntity.
-
create
void create(ReconcileRoleEntity entity)
Adds an instance ofReconcileRoleEntityto the persistent store.
-
update
void update(ReconcileRoleEntity entity)
Updates an instance ofReconcileRoleEntityat the persistent store.
-
remove
void remove(ReconcileRoleEntity entity)
Removes an instance ofReconcileRoleEntityfrom the persistent store.
-
load
ReconcileRoleEntity load(Long id)
Loads an instance ofReconcileRoleEntityfrom the persistent store.
-
loadAll
List<ReconcileRoleEntity> loadAll()
Loads all instances ofReconcileRoleEntityfrom the persistent store.
-
create
void create(Collection<? extends ReconcileRoleEntity> entities)
Creates a collection ofReconcileRoleEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ReconcileRoleEntity> entities)
Updates a collection ofReconcileRoleEntityin the persistent store.
-
remove
void remove(Collection<? extends ReconcileRoleEntity> entities)
Removes a collection ofReconcileRoleEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofReconcileRoleEntityfrom the persistent store.
-
query
List<ReconcileRoleEntity> query(String query, Parameter[] parameters)
Query ofReconcileRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ReconcileRoleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofReconcileRoleEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-