Package com.soffid.iam.model
Interface HostSystemEntityDao
-
- All Known Implementing Classes:
HostSystemEntityDaoBase,HostSystemEntityDaoImpl
public interface HostSystemEntityDaoDAO for Entity HostSystemEntity- See Also:
HostSystemEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(HostSystemEntity entity)Adds an instance ofHostSystemEntityto the persistent store.voidcreate(Collection<? extends HostSystemEntity> entities)Creates a collection ofHostSystemEntityand adds it to the persistent store.HostSystemEntityload(Long id)Loads an instance ofHostSystemEntityfrom the persistent store.List<HostSystemEntity>loadAll()Loads all instances ofHostSystemEntityfrom the persistent store.HostSystemEntitynewHostSystemEntity()Creates an instance ofHostSystemEntity.List<HostSystemEntity>query(String query, Parameter[] parameters)Query ofHostSystemEntityfrom the persistent store.List<HostSystemEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostSystemEntityfrom the persistent store.voidremove(HostSystemEntity entity)Removes an instance ofHostSystemEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostSystemEntityfrom the persistent store.voidremove(Collection<? extends HostSystemEntity> entities)Removes a collection ofHostSystemEntityfrom the persistent store.voidupdate(HostSystemEntity entity)Updates an instance ofHostSystemEntityat the persistent store.voidupdate(Collection<? extends HostSystemEntity> entities)Updates a collection ofHostSystemEntityin the persistent store.
-
-
-
Method Detail
-
newHostSystemEntity
HostSystemEntity newHostSystemEntity()
Creates an instance ofHostSystemEntity.
-
create
void create(HostSystemEntity entity)
Adds an instance ofHostSystemEntityto the persistent store.
-
update
void update(HostSystemEntity entity)
Updates an instance ofHostSystemEntityat the persistent store.
-
remove
void remove(HostSystemEntity entity)
Removes an instance ofHostSystemEntityfrom the persistent store.
-
load
HostSystemEntity load(Long id)
Loads an instance ofHostSystemEntityfrom the persistent store.
-
loadAll
List<HostSystemEntity> loadAll()
Loads all instances ofHostSystemEntityfrom the persistent store.
-
create
void create(Collection<? extends HostSystemEntity> entities)
Creates a collection ofHostSystemEntityand adds it to the persistent store.
-
update
void update(Collection<? extends HostSystemEntity> entities)
Updates a collection ofHostSystemEntityin the persistent store.
-
remove
void remove(Collection<? extends HostSystemEntity> entities)
Removes a collection ofHostSystemEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostSystemEntityfrom the persistent store.
-
query
List<HostSystemEntity> query(String query, Parameter[] parameters)
Query ofHostSystemEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostSystemEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostSystemEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-