Package com.soffid.iam.model
Interface HostEntryPointEntityDao
-
- All Known Implementing Classes:
HostEntryPointEntityDaoBase,HostEntryPointEntityDaoImpl
public interface HostEntryPointEntityDaoDAO for Entity HostEntryPointEntity- See Also:
HostEntryPointEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(HostEntryPointEntity entity)Adds an instance ofHostEntryPointEntityto the persistent store.voidcreate(Collection<? extends HostEntryPointEntity> entities)Creates a collection ofHostEntryPointEntityand adds it to the persistent store.HostEntryPointEntityload(Long id)Loads an instance ofHostEntryPointEntityfrom the persistent store.List<HostEntryPointEntity>loadAll()Loads all instances ofHostEntryPointEntityfrom the persistent store.HostEntryPointEntitynewHostEntryPointEntity()Creates an instance ofHostEntryPointEntity.List<HostEntryPointEntity>query(String query, Parameter[] parameters)Query ofHostEntryPointEntityfrom the persistent store.List<HostEntryPointEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostEntryPointEntityfrom the persistent store.voidremove(HostEntryPointEntity entity)Removes an instance ofHostEntryPointEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostEntryPointEntityfrom the persistent store.voidremove(Collection<? extends HostEntryPointEntity> entities)Removes a collection ofHostEntryPointEntityfrom the persistent store.voidupdate(HostEntryPointEntity entity)Updates an instance ofHostEntryPointEntityat the persistent store.voidupdate(Collection<? extends HostEntryPointEntity> entities)Updates a collection ofHostEntryPointEntityin the persistent store.
-
-
-
Method Detail
-
newHostEntryPointEntity
HostEntryPointEntity newHostEntryPointEntity()
Creates an instance ofHostEntryPointEntity.
-
create
void create(HostEntryPointEntity entity)
Adds an instance ofHostEntryPointEntityto the persistent store.
-
update
void update(HostEntryPointEntity entity)
Updates an instance ofHostEntryPointEntityat the persistent store.
-
remove
void remove(HostEntryPointEntity entity)
Removes an instance ofHostEntryPointEntityfrom the persistent store.
-
load
HostEntryPointEntity load(Long id)
Loads an instance ofHostEntryPointEntityfrom the persistent store.
-
loadAll
List<HostEntryPointEntity> loadAll()
Loads all instances ofHostEntryPointEntityfrom the persistent store.
-
create
void create(Collection<? extends HostEntryPointEntity> entities)
Creates a collection ofHostEntryPointEntityand adds it to the persistent store.
-
update
void update(Collection<? extends HostEntryPointEntity> entities)
Updates a collection ofHostEntryPointEntityin the persistent store.
-
remove
void remove(Collection<? extends HostEntryPointEntity> entities)
Removes a collection ofHostEntryPointEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostEntryPointEntityfrom the persistent store.
-
query
List<HostEntryPointEntity> query(String query, Parameter[] parameters)
Query ofHostEntryPointEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostEntryPointEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostEntryPointEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-