Package com.soffid.iam.model
Interface HostAttributeEntityDao
-
- All Known Implementing Classes:
HostAttributeEntityDaoBase,HostAttributeEntityDaoImpl
public interface HostAttributeEntityDaoDAO for Entity HostAttributeEntity- See Also:
HostAttributeEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(HostAttributeEntity entity)Adds an instance ofHostAttributeEntityto the persistent store.voidcreate(Collection<? extends HostAttributeEntity> entities)Creates a collection ofHostAttributeEntityand adds it to the persistent store.List<HostAttributeEntity>findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)CriteriaSearchConfiguration finderList<HostAttributeEntity>findByNameAndValue(String name, String value)Operation findByNameAndValueHostAttributeEntityload(Long id)Loads an instance ofHostAttributeEntityfrom the persistent store.List<HostAttributeEntity>loadAll()Loads all instances ofHostAttributeEntityfrom the persistent store.HostAttributeEntitynewHostAttributeEntity()Creates an instance ofHostAttributeEntity.List<HostAttributeEntity>query(String query, Parameter[] parameters)Query ofHostAttributeEntityfrom the persistent store.List<HostAttributeEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofHostAttributeEntityfrom the persistent store.voidremove(HostAttributeEntity entity)Removes an instance ofHostAttributeEntityfrom the persistent store.voidremove(Long id)Removes an instance ofHostAttributeEntityfrom the persistent store.voidremove(Collection<? extends HostAttributeEntity> entities)Removes a collection ofHostAttributeEntityfrom the persistent store.voidupdate(HostAttributeEntity entity)Updates an instance ofHostAttributeEntityat the persistent store.voidupdate(Collection<? extends HostAttributeEntity> entities)Updates a collection ofHostAttributeEntityin the persistent store.
-
-
-
Method Detail
-
findByNameAndValue
List<HostAttributeEntity> findByNameAndValue(String name, String value)
Operation findByNameAndValue- Parameters:
name-value-- Returns:
-
findByNameAndValue
List<HostAttributeEntity> findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration finder
-
newHostAttributeEntity
HostAttributeEntity newHostAttributeEntity()
Creates an instance ofHostAttributeEntity.
-
create
void create(HostAttributeEntity entity)
Adds an instance ofHostAttributeEntityto the persistent store.
-
update
void update(HostAttributeEntity entity)
Updates an instance ofHostAttributeEntityat the persistent store.
-
remove
void remove(HostAttributeEntity entity)
Removes an instance ofHostAttributeEntityfrom the persistent store.
-
load
HostAttributeEntity load(Long id)
Loads an instance ofHostAttributeEntityfrom the persistent store.
-
loadAll
List<HostAttributeEntity> loadAll()
Loads all instances ofHostAttributeEntityfrom the persistent store.
-
create
void create(Collection<? extends HostAttributeEntity> entities)
Creates a collection ofHostAttributeEntityand adds it to the persistent store.
-
update
void update(Collection<? extends HostAttributeEntity> entities)
Updates a collection ofHostAttributeEntityin the persistent store.
-
remove
void remove(Collection<? extends HostAttributeEntity> entities)
Removes a collection ofHostAttributeEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofHostAttributeEntityfrom the persistent store.
-
query
List<HostAttributeEntity> query(String query, Parameter[] parameters)
Query ofHostAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<HostAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofHostAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-