Package com.soffid.iam.model
Interface DefaultAttributeMappingEntityDao
-
- All Known Implementing Classes:
DefaultAttributeMappingEntityDaoBase,DefaultAttributeMappingEntityDaoImpl
public interface DefaultAttributeMappingEntityDaoDAO 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 ofDefaultAttributeMappingEntityto the persistent store.
-
update
void update(DefaultAttributeMappingEntity entity)
Updates an instance ofDefaultAttributeMappingEntityat the persistent store.
-
remove
void remove(DefaultAttributeMappingEntity entity)
Removes an instance ofDefaultAttributeMappingEntityfrom the persistent store.
-
load
DefaultAttributeMappingEntity load(Long id)
Loads an instance ofDefaultAttributeMappingEntityfrom the persistent store.
-
loadAll
List<DefaultAttributeMappingEntity> loadAll()
Loads all instances ofDefaultAttributeMappingEntityfrom the persistent store.
-
create
void create(Collection<? extends DefaultAttributeMappingEntity> entities)
Creates a collection ofDefaultAttributeMappingEntityand adds it to the persistent store.
-
update
void update(Collection<? extends DefaultAttributeMappingEntity> entities)
Updates a collection ofDefaultAttributeMappingEntityin the persistent store.
-
remove
void remove(Collection<? extends DefaultAttributeMappingEntity> entities)
Removes a collection ofDefaultAttributeMappingEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofDefaultAttributeMappingEntityfrom the persistent store.
-
query
List<DefaultAttributeMappingEntity> query(String query, Parameter[] parameters)
Query ofDefaultAttributeMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<DefaultAttributeMappingEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofDefaultAttributeMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-