Package com.soffid.iam.model
Interface UserGroupAttributeEntityDao
-
- All Known Implementing Classes:
UserGroupAttributeEntityDaoBase,UserGroupAttributeEntityDaoImpl
public interface UserGroupAttributeEntityDaoDAO for Entity UserGroupAttributeEntity- See Also:
UserGroupAttributeEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(UserGroupAttributeEntity entity)Adds an instance ofUserGroupAttributeEntityto the persistent store.voidcreate(Collection<? extends UserGroupAttributeEntity> entities)Creates a collection ofUserGroupAttributeEntityand adds it to the persistent store.List<UserGroupAttributeEntity>findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)CriteriaSearchConfiguration finderList<UserGroupAttributeEntity>findByNameAndValue(String name, String value)Operation findByNameAndValueUserGroupAttributeEntityload(Long id)Loads an instance ofUserGroupAttributeEntityfrom the persistent store.List<UserGroupAttributeEntity>loadAll()Loads all instances ofUserGroupAttributeEntityfrom the persistent store.UserGroupAttributeEntitynewUserGroupAttributeEntity()Creates an instance ofUserGroupAttributeEntity.List<UserGroupAttributeEntity>query(String query, Parameter[] parameters)Query ofUserGroupAttributeEntityfrom the persistent store.List<UserGroupAttributeEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofUserGroupAttributeEntityfrom the persistent store.voidremove(UserGroupAttributeEntity entity)Removes an instance ofUserGroupAttributeEntityfrom the persistent store.voidremove(Long id)Removes an instance ofUserGroupAttributeEntityfrom the persistent store.voidremove(Collection<? extends UserGroupAttributeEntity> entities)Removes a collection ofUserGroupAttributeEntityfrom the persistent store.voidupdate(UserGroupAttributeEntity entity)Updates an instance ofUserGroupAttributeEntityat the persistent store.voidupdate(Collection<? extends UserGroupAttributeEntity> entities)Updates a collection ofUserGroupAttributeEntityin the persistent store.
-
-
-
Method Detail
-
findByNameAndValue
List<UserGroupAttributeEntity> findByNameAndValue(String name, String value)
Operation findByNameAndValue- Parameters:
name-value-- Returns:
-
findByNameAndValue
List<UserGroupAttributeEntity> findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration finder
-
newUserGroupAttributeEntity
UserGroupAttributeEntity newUserGroupAttributeEntity()
Creates an instance ofUserGroupAttributeEntity.
-
create
void create(UserGroupAttributeEntity entity)
Adds an instance ofUserGroupAttributeEntityto the persistent store.
-
update
void update(UserGroupAttributeEntity entity)
Updates an instance ofUserGroupAttributeEntityat the persistent store.
-
remove
void remove(UserGroupAttributeEntity entity)
Removes an instance ofUserGroupAttributeEntityfrom the persistent store.
-
load
UserGroupAttributeEntity load(Long id)
Loads an instance ofUserGroupAttributeEntityfrom the persistent store.
-
loadAll
List<UserGroupAttributeEntity> loadAll()
Loads all instances ofUserGroupAttributeEntityfrom the persistent store.
-
create
void create(Collection<? extends UserGroupAttributeEntity> entities)
Creates a collection ofUserGroupAttributeEntityand adds it to the persistent store.
-
update
void update(Collection<? extends UserGroupAttributeEntity> entities)
Updates a collection ofUserGroupAttributeEntityin the persistent store.
-
remove
void remove(Collection<? extends UserGroupAttributeEntity> entities)
Removes a collection ofUserGroupAttributeEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofUserGroupAttributeEntityfrom the persistent store.
-
query
List<UserGroupAttributeEntity> query(String query, Parameter[] parameters)
Query ofUserGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<UserGroupAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofUserGroupAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-