Package com.soffid.iam.model
Interface GroupAttributeEntityDao
-
- All Known Implementing Classes:
GroupAttributeEntityDaoBase,GroupAttributeEntityDaoImpl
public interface GroupAttributeEntityDaoDAO for Entity GroupAttributeEntity- See Also:
GroupAttributeEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(GroupAttributeEntity entity)Adds an instance ofGroupAttributeEntityto the persistent store.voidcreate(Collection<? extends GroupAttributeEntity> entities)Creates a collection ofGroupAttributeEntityand adds it to the persistent store.List<GroupAttributeEntity>findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)CriteriaSearchConfiguration finderList<GroupAttributeEntity>findByNameAndValue(String name, String value)Operation findByNameAndValueGroupAttributeEntityload(Long id)Loads an instance ofGroupAttributeEntityfrom the persistent store.List<GroupAttributeEntity>loadAll()Loads all instances ofGroupAttributeEntityfrom the persistent store.GroupAttributeEntitynewGroupAttributeEntity()Creates an instance ofGroupAttributeEntity.List<GroupAttributeEntity>query(String query, Parameter[] parameters)Query ofGroupAttributeEntityfrom the persistent store.List<GroupAttributeEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofGroupAttributeEntityfrom the persistent store.voidremove(GroupAttributeEntity entity)Removes an instance ofGroupAttributeEntityfrom the persistent store.voidremove(Long id)Removes an instance ofGroupAttributeEntityfrom the persistent store.voidremove(Collection<? extends GroupAttributeEntity> entities)Removes a collection ofGroupAttributeEntityfrom the persistent store.voidupdate(GroupAttributeEntity entity)Updates an instance ofGroupAttributeEntityat the persistent store.voidupdate(Collection<? extends GroupAttributeEntity> entities)Updates a collection ofGroupAttributeEntityin the persistent store.
-
-
-
Method Detail
-
findByNameAndValue
List<GroupAttributeEntity> findByNameAndValue(String name, String value)
Operation findByNameAndValue- Parameters:
name-value-- Returns:
-
findByNameAndValue
List<GroupAttributeEntity> findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration finder
-
newGroupAttributeEntity
GroupAttributeEntity newGroupAttributeEntity()
Creates an instance ofGroupAttributeEntity.
-
create
void create(GroupAttributeEntity entity)
Adds an instance ofGroupAttributeEntityto the persistent store.
-
update
void update(GroupAttributeEntity entity)
Updates an instance ofGroupAttributeEntityat the persistent store.
-
remove
void remove(GroupAttributeEntity entity)
Removes an instance ofGroupAttributeEntityfrom the persistent store.
-
load
GroupAttributeEntity load(Long id)
Loads an instance ofGroupAttributeEntityfrom the persistent store.
-
loadAll
List<GroupAttributeEntity> loadAll()
Loads all instances ofGroupAttributeEntityfrom the persistent store.
-
create
void create(Collection<? extends GroupAttributeEntity> entities)
Creates a collection ofGroupAttributeEntityand adds it to the persistent store.
-
update
void update(Collection<? extends GroupAttributeEntity> entities)
Updates a collection ofGroupAttributeEntityin the persistent store.
-
remove
void remove(Collection<? extends GroupAttributeEntity> entities)
Removes a collection ofGroupAttributeEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofGroupAttributeEntityfrom the persistent store.
-
query
List<GroupAttributeEntity> query(String query, Parameter[] parameters)
Query ofGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<GroupAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-