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