Package com.soffid.iam.model
Interface RoleAttributeEntityDao
-
- All Known Implementing Classes:
RoleAttributeEntityDaoBase
,RoleAttributeEntityDaoImpl
public interface RoleAttributeEntityDao
DAO for Entity RoleAttributeEntity- See Also:
RoleAttributeEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(RoleAttributeEntity entity)
Adds an instance ofRoleAttributeEntity
to the persistent store.void
create(Collection<? extends RoleAttributeEntity> entities)
Creates a collection ofRoleAttributeEntity
and adds it to the persistent store.List<RoleAttributeEntity>
findByNameAndValue(CriteriaSearchConfiguration criteria, String name, String value)
CriteriaSearchConfiguration finderList<RoleAttributeEntity>
findByNameAndValue(String name, String value)
Operation findByNameAndValueRoleAttributeEntity
load(Long id)
Loads an instance ofRoleAttributeEntity
from the persistent store.List<RoleAttributeEntity>
loadAll()
Loads all instances ofRoleAttributeEntity
from the persistent store.RoleAttributeEntity
newRoleAttributeEntity()
Creates an instance ofRoleAttributeEntity
.List<RoleAttributeEntity>
query(String query, Parameter[] parameters)
Query ofRoleAttributeEntity
from the persistent store.List<RoleAttributeEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRoleAttributeEntity
from the persistent store.void
remove(RoleAttributeEntity entity)
Removes an instance ofRoleAttributeEntity
from the persistent store.void
remove(Long id)
Removes an instance ofRoleAttributeEntity
from the persistent store.void
remove(Collection<? extends RoleAttributeEntity> entities)
Removes a collection ofRoleAttributeEntity
from the persistent store.void
update(RoleAttributeEntity entity)
Updates an instance ofRoleAttributeEntity
at the persistent store.void
update(Collection<? extends RoleAttributeEntity> entities)
Updates a collection ofRoleAttributeEntity
in 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 ofRoleAttributeEntity
to the persistent store.
-
update
void update(RoleAttributeEntity entity)
Updates an instance ofRoleAttributeEntity
at the persistent store.
-
remove
void remove(RoleAttributeEntity entity)
Removes an instance ofRoleAttributeEntity
from the persistent store.
-
load
RoleAttributeEntity load(Long id)
Loads an instance ofRoleAttributeEntity
from the persistent store.
-
loadAll
List<RoleAttributeEntity> loadAll()
Loads all instances ofRoleAttributeEntity
from the persistent store.
-
create
void create(Collection<? extends RoleAttributeEntity> entities)
Creates a collection ofRoleAttributeEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends RoleAttributeEntity> entities)
Updates a collection ofRoleAttributeEntity
in the persistent store.
-
remove
void remove(Collection<? extends RoleAttributeEntity> entities)
Removes a collection ofRoleAttributeEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofRoleAttributeEntity
from the persistent store.
-
query
List<RoleAttributeEntity> query(String query, Parameter[] parameters)
Query ofRoleAttributeEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<RoleAttributeEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofRoleAttributeEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-