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