Package com.soffid.iam.model
Interface RoleAttributeEntityDao
-
- All Known Implementing Classes:
RoleAttributeEntityDaoBase,RoleAttributeEntityDaoImpl
public interface RoleAttributeEntityDaoDAO for Entity RoleAttributeEntity- See Also:
RoleAttributeEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(RoleAttributeEntity entity)Adds an instance ofRoleAttributeEntityto the persistent store.voidcreate(Collection<? extends RoleAttributeEntity> entities)Creates a collection ofRoleAttributeEntityand adds it to the persistent store.List<RoleAttributeEntity>findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)CriteriaSearchConfiguration finderList<RoleAttributeEntity>findByNameAndValue(String name, String value)Operation findByNameAndValueRoleAttributeEntityload(Long id)Loads an instance ofRoleAttributeEntityfrom the persistent store.List<RoleAttributeEntity>loadAll()Loads all instances ofRoleAttributeEntityfrom the persistent store.RoleAttributeEntitynewRoleAttributeEntity()Creates an instance ofRoleAttributeEntity.List<RoleAttributeEntity>query(String query, Parameter[] parameters)Query ofRoleAttributeEntityfrom the persistent store.List<RoleAttributeEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofRoleAttributeEntityfrom the persistent store.voidremove(RoleAttributeEntity entity)Removes an instance ofRoleAttributeEntityfrom the persistent store.voidremove(Long id)Removes an instance ofRoleAttributeEntityfrom the persistent store.voidremove(Collection<? extends RoleAttributeEntity> entities)Removes a collection ofRoleAttributeEntityfrom the persistent store.voidupdate(RoleAttributeEntity entity)Updates an instance ofRoleAttributeEntityat the persistent store.voidupdate(Collection<? extends RoleAttributeEntity> entities)Updates a collection ofRoleAttributeEntityin the persistent store.
-
-
-
Method Detail
-
findByNameAndValue
List<RoleAttributeEntity> findByNameAndValue(String name, String value)
Operation findByNameAndValue- Parameters:
name-value-- Returns:
-
findByNameAndValue
List<RoleAttributeEntity> findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration finder
-
newRoleAttributeEntity
RoleAttributeEntity newRoleAttributeEntity()
Creates an instance ofRoleAttributeEntity.
-
create
void create(RoleAttributeEntity entity)
Adds an instance ofRoleAttributeEntityto the persistent store.
-
update
void update(RoleAttributeEntity entity)
Updates an instance ofRoleAttributeEntityat the persistent store.
-
remove
void remove(RoleAttributeEntity entity)
Removes an instance ofRoleAttributeEntityfrom the persistent store.
-
load
RoleAttributeEntity load(Long id)
Loads an instance ofRoleAttributeEntityfrom the persistent store.
-
loadAll
List<RoleAttributeEntity> loadAll()
Loads all instances ofRoleAttributeEntityfrom the persistent store.
-
create
void create(Collection<? extends RoleAttributeEntity> entities)
Creates a collection ofRoleAttributeEntityand adds it to the persistent store.
-
update
void update(Collection<? extends RoleAttributeEntity> entities)
Updates a collection ofRoleAttributeEntityin the persistent store.
-
remove
void remove(Collection<? extends RoleAttributeEntity> entities)
Removes a collection ofRoleAttributeEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofRoleAttributeEntityfrom the persistent store.
-
query
List<RoleAttributeEntity> query(String query, Parameter[] parameters)
Query ofRoleAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<RoleAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRoleAttributeEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-