Package com.soffid.iam.model
Interface AccountSnapshotEntityDao
-
- All Known Implementing Classes:
AccountSnapshotEntityDaoBase,AccountSnapshotEntityDaoImpl
public interface AccountSnapshotEntityDaoDAO for Entity AccountSnapshotEntity- See Also:
AccountSnapshotEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(AccountSnapshotEntity entity)Adds an instance ofAccountSnapshotEntityto the persistent store.voidcreate(Collection<? extends AccountSnapshotEntity> entities)Creates a collection ofAccountSnapshotEntityand adds it to the persistent store.AccountSnapshotEntityload(Long id)Loads an instance ofAccountSnapshotEntityfrom the persistent store.List<AccountSnapshotEntity>loadAll()Loads all instances ofAccountSnapshotEntityfrom the persistent store.AccountSnapshotEntitynewAccountSnapshotEntity()Creates an instance ofAccountSnapshotEntity.List<AccountSnapshotEntity>query(String query, Parameter[] parameters)Query ofAccountSnapshotEntityfrom the persistent store.List<AccountSnapshotEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofAccountSnapshotEntityfrom the persistent store.voidremove(AccountSnapshotEntity entity)Removes an instance ofAccountSnapshotEntityfrom the persistent store.voidremove(Long id)Removes an instance ofAccountSnapshotEntityfrom the persistent store.voidremove(Collection<? extends AccountSnapshotEntity> entities)Removes a collection ofAccountSnapshotEntityfrom the persistent store.voidupdate(AccountSnapshotEntity entity)Updates an instance ofAccountSnapshotEntityat the persistent store.voidupdate(Collection<? extends AccountSnapshotEntity> entities)Updates a collection ofAccountSnapshotEntityin the persistent store.
-
-
-
Method Detail
-
newAccountSnapshotEntity
AccountSnapshotEntity newAccountSnapshotEntity()
Creates an instance ofAccountSnapshotEntity.
-
create
void create(AccountSnapshotEntity entity)
Adds an instance ofAccountSnapshotEntityto the persistent store.
-
update
void update(AccountSnapshotEntity entity)
Updates an instance ofAccountSnapshotEntityat the persistent store.
-
remove
void remove(AccountSnapshotEntity entity)
Removes an instance ofAccountSnapshotEntityfrom the persistent store.
-
load
AccountSnapshotEntity load(Long id)
Loads an instance ofAccountSnapshotEntityfrom the persistent store.
-
loadAll
List<AccountSnapshotEntity> loadAll()
Loads all instances ofAccountSnapshotEntityfrom the persistent store.
-
create
void create(Collection<? extends AccountSnapshotEntity> entities)
Creates a collection ofAccountSnapshotEntityand adds it to the persistent store.
-
update
void update(Collection<? extends AccountSnapshotEntity> entities)
Updates a collection ofAccountSnapshotEntityin the persistent store.
-
remove
void remove(Collection<? extends AccountSnapshotEntity> entities)
Removes a collection ofAccountSnapshotEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofAccountSnapshotEntityfrom the persistent store.
-
query
List<AccountSnapshotEntity> query(String query, Parameter[] parameters)
Query ofAccountSnapshotEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<AccountSnapshotEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofAccountSnapshotEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-