Package com.soffid.iam.reconcile.model
Interface ReconcileAccountEntityDao
-
- All Known Implementing Classes:
ReconcileAccountEntityDaoBase
,ReconcileAccountEntityDaoImpl
public interface ReconcileAccountEntityDao
DAO for Entity ReconcileAccountEntity- See Also:
ReconcileAccountEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ReconcileAccountEntity entity)
Adds an instance ofReconcileAccountEntity
to the persistent store.void
create(Collection<? extends ReconcileAccountEntity> entities)
Creates a collection ofReconcileAccountEntity
and adds it to the persistent store.List<ReconcileAccountEntity>
findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration finderList<ReconcileAccountEntity>
findByProcessId(Long processId)
Operation findByProcessIdReconcileAccountEntity
load(Long id)
Loads an instance ofReconcileAccountEntity
from the persistent store.List<ReconcileAccountEntity>
loadAll()
Loads all instances ofReconcileAccountEntity
from the persistent store.ReconcileAccountEntity
newReconcileAccountEntity()
Creates an instance ofReconcileAccountEntity
.List<ReconcileAccountEntity>
query(String query, Parameter[] parameters)
Query ofReconcileAccountEntity
from the persistent store.List<ReconcileAccountEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofReconcileAccountEntity
from the persistent store.ReconcileAccountEntity
reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount instance)
Transforms fromReconcileAccount
objectvoid
reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount source, ReconcileAccountEntity target, boolean copyIfNull)
Copy data fromReconcileAccount
objectList<ReconcileAccountEntity>
reconcileAccountToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileAccount> instances)
Transforms fromReconcileAccount
listvoid
remove(ReconcileAccountEntity entity)
Removes an instance ofReconcileAccountEntity
from the persistent store.void
remove(Long id)
Removes an instance ofReconcileAccountEntity
from the persistent store.void
remove(Collection<? extends ReconcileAccountEntity> entities)
Removes a collection ofReconcileAccountEntity
from the persistent store.com.soffid.iam.reconcile.common.ReconcileAccount
toReconcileAccount(ReconcileAccountEntity entity)
Transforms toReconcileAccount
objectvoid
toReconcileAccount(ReconcileAccountEntity source, com.soffid.iam.reconcile.common.ReconcileAccount target)
Copy data toReconcileAccount
objectList<com.soffid.iam.reconcile.common.ReconcileAccount>
toReconcileAccountList(Collection<ReconcileAccountEntity> entities)
Transforms toReconcileAccount
listvoid
update(ReconcileAccountEntity entity)
Updates an instance ofReconcileAccountEntity
at the persistent store.void
update(Collection<? extends ReconcileAccountEntity> entities)
Updates a collection ofReconcileAccountEntity
in 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 toReconcileAccount
object
-
toReconcileAccount
com.soffid.iam.reconcile.common.ReconcileAccount toReconcileAccount(ReconcileAccountEntity entity)
Transforms toReconcileAccount
object
-
toReconcileAccountList
List<com.soffid.iam.reconcile.common.ReconcileAccount> toReconcileAccountList(Collection<ReconcileAccountEntity> entities)
Transforms toReconcileAccount
list
-
reconcileAccountToEntity
void reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount source, ReconcileAccountEntity target, boolean copyIfNull)
Copy data fromReconcileAccount
object
-
reconcileAccountToEntity
ReconcileAccountEntity reconcileAccountToEntity(com.soffid.iam.reconcile.common.ReconcileAccount instance)
Transforms fromReconcileAccount
object
-
reconcileAccountToEntityList
List<ReconcileAccountEntity> reconcileAccountToEntityList(Collection<com.soffid.iam.reconcile.common.ReconcileAccount> instances)
Transforms fromReconcileAccount
list
-
newReconcileAccountEntity
ReconcileAccountEntity newReconcileAccountEntity()
Creates an instance ofReconcileAccountEntity
.
-
create
void create(ReconcileAccountEntity entity)
Adds an instance ofReconcileAccountEntity
to the persistent store.
-
update
void update(ReconcileAccountEntity entity)
Updates an instance ofReconcileAccountEntity
at the persistent store.
-
remove
void remove(ReconcileAccountEntity entity)
Removes an instance ofReconcileAccountEntity
from the persistent store.
-
load
ReconcileAccountEntity load(Long id)
Loads an instance ofReconcileAccountEntity
from the persistent store.
-
loadAll
List<ReconcileAccountEntity> loadAll()
Loads all instances ofReconcileAccountEntity
from the persistent store.
-
create
void create(Collection<? extends ReconcileAccountEntity> entities)
Creates a collection ofReconcileAccountEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ReconcileAccountEntity> entities)
Updates a collection ofReconcileAccountEntity
in the persistent store.
-
remove
void remove(Collection<? extends ReconcileAccountEntity> entities)
Removes a collection ofReconcileAccountEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofReconcileAccountEntity
from the persistent store.
-
query
List<ReconcileAccountEntity> query(String query, Parameter[] parameters)
Query ofReconcileAccountEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ReconcileAccountEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofReconcileAccountEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-