Package com.soffid.iam.model
Interface DefaultAttributeMappingEntityDao
-
- All Known Implementing Classes:
DefaultAttributeMappingEntityDaoBase
,DefaultAttributeMappingEntityDaoImpl
public interface DefaultAttributeMappingEntityDao
DAO for Entity DefaultAttributeMappingEntity- See Also:
es.caib.seycon.ng.model.DefaultAttributeMappingEntity
-
-
Method Summary
-
-
-
Method Detail
-
newDefaultAttributeMappingEntity
DefaultAttributeMappingEntity newDefaultAttributeMappingEntity()
Creates an instance ofDefaultAttributeMappingEntity
.
-
create
void create(DefaultAttributeMappingEntity entity)
Adds an instance ofDefaultAttributeMappingEntity
to the persistent store.
-
update
void update(DefaultAttributeMappingEntity entity)
Updates an instance ofDefaultAttributeMappingEntity
at the persistent store.
-
remove
void remove(DefaultAttributeMappingEntity entity)
Removes an instance ofDefaultAttributeMappingEntity
from the persistent store.
-
load
DefaultAttributeMappingEntity load(Long id)
Loads an instance ofDefaultAttributeMappingEntity
from the persistent store.
-
loadAll
List<DefaultAttributeMappingEntity> loadAll()
Loads all instances ofDefaultAttributeMappingEntity
from the persistent store.
-
create
void create(Collection<? extends DefaultAttributeMappingEntity> entities)
Creates a collection ofDefaultAttributeMappingEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends DefaultAttributeMappingEntity> entities)
Updates a collection ofDefaultAttributeMappingEntity
in the persistent store.
-
remove
void remove(Collection<? extends DefaultAttributeMappingEntity> entities)
Removes a collection ofDefaultAttributeMappingEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofDefaultAttributeMappingEntity
from the persistent store.
-
query
List<DefaultAttributeMappingEntity> query(String query, Parameter[] parameters)
Query ofDefaultAttributeMappingEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<DefaultAttributeMappingEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultAttributeMappingEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-