Package com.soffid.iam.reconcile.model
Interface ReconcileAccountEntityDao
-
- All Known Implementing Classes:
ReconcileAccountEntityDaoBase,ReconcileAccountEntityDaoImpl
public interface ReconcileAccountEntityDaoDAO for Entity ReconcileAccountEntity- See Also:
ReconcileAccountEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ReconcileAccountEntity entity)Adds an instance ofReconcileAccountEntityto the persistent store.voidcreate(Collection<? extends ReconcileAccountEntity> entities)Creates a collection ofReconcileAccountEntityand adds it to the persistent store.List<ReconcileAccountEntity>findByProcessId(CriteriaSearchConfiguration criteria, Long processId)CriteriaSearchConfiguration finderList<ReconcileAccountEntity>findByProcessId(Long processId)Operation findByProcessIdReconcileAccountEntityload(Long id)Loads an instance ofReconcileAccountEntityfrom the persistent store.List<ReconcileAccountEntity>loadAll()Loads all instances ofReconcileAccountEntityfrom the persistent store.ReconcileAccountEntitynewReconcileAccountEntity()Creates an instance ofReconcileAccountEntity.List<ReconcileAccountEntity>query(String query, Parameter[] parameters)Query ofReconcileAccountEntityfrom the persistent store.List<ReconcileAccountEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofReconcileAccountEntityfrom the persistent store.ReconcileAccountEntityreconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount instance)Transforms fromReconcileAccountobjectvoidreconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount source, ReconcileAccountEntity target, boolean copyIfNull)Copy data fromReconcileAccountobjectList<ReconcileAccountEntity>reconcileAccountToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileAccount> instances)Transforms fromReconcileAccountlistvoidremove(ReconcileAccountEntity entity)Removes an instance ofReconcileAccountEntityfrom the persistent store.voidremove(Long id)Removes an instance ofReconcileAccountEntityfrom the persistent store.voidremove(Collection<? extends ReconcileAccountEntity> entities)Removes a collection ofReconcileAccountEntityfrom the persistent store.com.soffid.iam.reconcile.common.ReconcileAccounttoReconcileAccount(ReconcileAccountEntity entity)Transforms toReconcileAccountobjectvoidtoReconcileAccount(ReconcileAccountEntity source, com.soffid.iam.reconcile.common.ReconcileAccount target)Copy data toReconcileAccountobjectList<com.soffid.iam.reconcile.common.ReconcileAccount>toReconcileAccountList(Collection<ReconcileAccountEntity> entities)Transforms toReconcileAccountlistvoidupdate(ReconcileAccountEntity entity)Updates an instance ofReconcileAccountEntityat the persistent store.voidupdate(Collection<? extends ReconcileAccountEntity> entities)Updates a collection ofReconcileAccountEntityin the persistent store.
-
-
-
Method Detail
-
findByProcessId
List<ReconcileAccountEntity> findByProcessId(Long processId)
Operation findByProcessId- Parameters:
processId-- Returns:
-
findByProcessId
List<ReconcileAccountEntity> findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration finder
-
toReconcileAccount
void toReconcileAccount(ReconcileAccountEntity source, com.soffid.iam.reconcile.common.ReconcileAccount target)
Copy data toReconcileAccountobject
-
toReconcileAccount
com.soffid.iam.reconcile.common.ReconcileAccount toReconcileAccount(ReconcileAccountEntity entity)
Transforms toReconcileAccountobject
-
toReconcileAccountList
List<com.soffid.iam.reconcile.common.ReconcileAccount> toReconcileAccountList(Collection<ReconcileAccountEntity> entities)
Transforms toReconcileAccountlist
-
reconcileAccountToEntity
void reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount source, ReconcileAccountEntity target, boolean copyIfNull)Copy data fromReconcileAccountobject
-
reconcileAccountToEntity
ReconcileAccountEntity reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount instance)
Transforms fromReconcileAccountobject
-
reconcileAccountToEntityList
List<ReconcileAccountEntity> reconcileAccountToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileAccount> instances)
Transforms fromReconcileAccountlist
-
newReconcileAccountEntity
ReconcileAccountEntity newReconcileAccountEntity()
Creates an instance ofReconcileAccountEntity.
-
create
void create(ReconcileAccountEntity entity)
Adds an instance ofReconcileAccountEntityto the persistent store.
-
update
void update(ReconcileAccountEntity entity)
Updates an instance ofReconcileAccountEntityat the persistent store.
-
remove
void remove(ReconcileAccountEntity entity)
Removes an instance ofReconcileAccountEntityfrom the persistent store.
-
load
ReconcileAccountEntity load(Long id)
Loads an instance ofReconcileAccountEntityfrom the persistent store.
-
loadAll
List<ReconcileAccountEntity> loadAll()
Loads all instances ofReconcileAccountEntityfrom the persistent store.
-
create
void create(Collection<? extends ReconcileAccountEntity> entities)
Creates a collection ofReconcileAccountEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ReconcileAccountEntity> entities)
Updates a collection ofReconcileAccountEntityin the persistent store.
-
remove
void remove(Collection<? extends ReconcileAccountEntity> entities)
Removes a collection ofReconcileAccountEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofReconcileAccountEntityfrom the persistent store.
-
query
List<ReconcileAccountEntity> query(String query, Parameter[] parameters)
Query ofReconcileAccountEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ReconcileAccountEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofReconcileAccountEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-