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