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