Package com.soffid.iam.model
Interface HostServiceEntityDao
-
- All Known Implementing Classes:
HostServiceEntityDaoBase,HostServiceEntityDaoImpl
public interface HostServiceEntityDaoDAO for Entity HostServiceEntity- See Also:
HostServiceEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(HostServiceEntity entity)Adds an instance ofHostServiceEntityto the persistent store.voidcreate(Collection<? extends HostServiceEntity> entities)Creates a collection ofHostServiceEntityand adds it to the persistent store.HostServiceEntityhostServiceToEntity(com.soffid.iam.api.HostService instance)Transforms fromHostServiceobjectvoidhostServiceToEntity(com.soffid.iam.api.HostService source, HostServiceEntity target, boolean copyIfNull)Copy data fromHostServiceobjectList<HostServiceEntity>hostServiceToEntityList(Collection<com.soffid.iam.api.HostService> instances)Transforms fromHostServicelistHostServiceEntityload(Long id)Loads an instance ofHostServiceEntityfrom the persistent store.List<HostServiceEntity>loadAll()Loads all instances ofHostServiceEntityfrom the persistent store.HostServiceEntitynewHostServiceEntity()Creates an instance ofHostServiceEntity.List<HostServiceEntity>query(String query, Parameter[] parameters)Query ofHostServiceEntityfrom the persistent store.List<HostServiceEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostServiceEntityfrom the persistent store.voidremove(HostServiceEntity entity)Removes an instance ofHostServiceEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostServiceEntityfrom the persistent store.voidremove(Collection<? extends HostServiceEntity> entities)Removes a collection ofHostServiceEntityfrom the persistent store.com.soffid.iam.api.HostServicetoHostService(HostServiceEntity entity)Transforms toHostServiceobjectvoidtoHostService(HostServiceEntity source, com.soffid.iam.api.HostService target)Copy data toHostServiceobjectList<com.soffid.iam.api.HostService>toHostServiceList(Collection<HostServiceEntity> entities)Transforms toHostServicelistvoidupdate(HostServiceEntity entity)Updates an instance ofHostServiceEntityat the persistent store.voidupdate(Collection<? extends HostServiceEntity> entities)Updates a collection ofHostServiceEntityin the persistent store.
-
-
-
Method Detail
-
toHostService
void toHostService(HostServiceEntity source, com.soffid.iam.api.HostService target)
Copy data toHostServiceobject
-
toHostService
com.soffid.iam.api.HostService toHostService(HostServiceEntity entity)
Transforms toHostServiceobject
-
toHostServiceList
List<com.soffid.iam.api.HostService> toHostServiceList(Collection<HostServiceEntity> entities)
Transforms toHostServicelist
-
hostServiceToEntity
void hostServiceToEntity(com.soffid.iam.api.HostService source, HostServiceEntity target, boolean copyIfNull)Copy data fromHostServiceobject
-
hostServiceToEntity
HostServiceEntity hostServiceToEntity(com.soffid.iam.api.HostService instance)
Transforms fromHostServiceobject
-
hostServiceToEntityList
List<HostServiceEntity> hostServiceToEntityList(Collection<com.soffid.iam.api.HostService> instances)
Transforms fromHostServicelist
-
newHostServiceEntity
HostServiceEntity newHostServiceEntity()
Creates an instance ofHostServiceEntity.
-
create
void create(HostServiceEntity entity)
Adds an instance ofHostServiceEntityto the persistent store.
-
update
void update(HostServiceEntity entity)
Updates an instance ofHostServiceEntityat the persistent store.
-
remove
void remove(HostServiceEntity entity)
Removes an instance ofHostServiceEntityfrom the persistent store.
-
load
HostServiceEntity load(Long id)
Loads an instance ofHostServiceEntityfrom the persistent store.
-
loadAll
List<HostServiceEntity> loadAll()
Loads all instances ofHostServiceEntityfrom the persistent store.
-
create
void create(Collection<? extends HostServiceEntity> entities)
Creates a collection ofHostServiceEntityand adds it to the persistent store.
-
update
void update(Collection<? extends HostServiceEntity> entities)
Updates a collection ofHostServiceEntityin the persistent store.
-
remove
void remove(Collection<? extends HostServiceEntity> entities)
Removes a collection ofHostServiceEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostServiceEntityfrom the persistent store.
-
query
List<HostServiceEntity> query(String query, Parameter[] parameters)
Query ofHostServiceEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostServiceEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostServiceEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-