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