Package com.soffid.iam.model
Interface AttributeMappingEntityDao
-
- All Known Implementing Classes:
AttributeMappingEntityDaoBase,AttributeMappingEntityDaoImpl
public interface AttributeMappingEntityDaoDAO for Entity AttributeMappingEntity- See Also:
es.caib.seycon.ng.model.AttributeMappingEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeMappingEntityattributeMappingToEntity(com.soffid.iam.api.AttributeMapping instance)Transforms fromAttributeMappingobjectvoidattributeMappingToEntity(com.soffid.iam.api.AttributeMapping source, AttributeMappingEntity target, boolean copyIfNull)Copy data fromAttributeMappingobjectList<AttributeMappingEntity>attributeMappingToEntityList(Collection<com.soffid.iam.api.AttributeMapping> instances)Transforms fromAttributeMappinglistvoidcreate(AttributeMappingEntity entity)Adds an instance ofAttributeMappingEntityto the persistent store.voidcreate(Collection<? extends AttributeMappingEntity> entities)Creates a collection ofAttributeMappingEntityand adds it to the persistent store.AttributeMappingEntityload(Long id)Loads an instance ofAttributeMappingEntityfrom the persistent store.List<AttributeMappingEntity>loadAll()Loads all instances ofAttributeMappingEntityfrom the persistent store.AttributeMappingEntitynewAttributeMappingEntity()Creates an instance ofAttributeMappingEntity.List<AttributeMappingEntity>query(String query, Parameter[] parameters)Query ofAttributeMappingEntityfrom the persistent store.List<AttributeMappingEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofAttributeMappingEntityfrom the persistent store.voidremove(AttributeMappingEntity entity)Removes an instance ofAttributeMappingEntityfrom the persistent store.voidremove(Long id)Removes an instance ofAttributeMappingEntityfrom the persistent store.voidremove(Collection<? extends AttributeMappingEntity> entities)Removes a collection ofAttributeMappingEntityfrom the persistent store.com.soffid.iam.api.AttributeMappingtoAttributeMapping(AttributeMappingEntity entity)Transforms toAttributeMappingobjectvoidtoAttributeMapping(AttributeMappingEntity source, com.soffid.iam.api.AttributeMapping target)Copy data toAttributeMappingobjectList<com.soffid.iam.api.AttributeMapping>toAttributeMappingList(Collection<AttributeMappingEntity> entities)Transforms toAttributeMappinglistvoidupdate(AttributeMappingEntity entity)Updates an instance ofAttributeMappingEntityat the persistent store.voidupdate(Collection<? extends AttributeMappingEntity> entities)Updates a collection ofAttributeMappingEntityin the persistent store.
-
-
-
Method Detail
-
toAttributeMapping
void toAttributeMapping(AttributeMappingEntity source, com.soffid.iam.api.AttributeMapping target)
Copy data toAttributeMappingobject
-
toAttributeMapping
com.soffid.iam.api.AttributeMapping toAttributeMapping(AttributeMappingEntity entity)
Transforms toAttributeMappingobject
-
toAttributeMappingList
List<com.soffid.iam.api.AttributeMapping> toAttributeMappingList(Collection<AttributeMappingEntity> entities)
Transforms toAttributeMappinglist
-
attributeMappingToEntity
void attributeMappingToEntity(com.soffid.iam.api.AttributeMapping source, AttributeMappingEntity target, boolean copyIfNull)Copy data fromAttributeMappingobject
-
attributeMappingToEntity
AttributeMappingEntity attributeMappingToEntity(com.soffid.iam.api.AttributeMapping instance)
Transforms fromAttributeMappingobject
-
attributeMappingToEntityList
List<AttributeMappingEntity> attributeMappingToEntityList(Collection<com.soffid.iam.api.AttributeMapping> instances)
Transforms fromAttributeMappinglist
-
newAttributeMappingEntity
AttributeMappingEntity newAttributeMappingEntity()
Creates an instance ofAttributeMappingEntity.
-
create
void create(AttributeMappingEntity entity)
Adds an instance ofAttributeMappingEntityto the persistent store.
-
update
void update(AttributeMappingEntity entity)
Updates an instance ofAttributeMappingEntityat the persistent store.
-
remove
void remove(AttributeMappingEntity entity)
Removes an instance ofAttributeMappingEntityfrom the persistent store.
-
load
AttributeMappingEntity load(Long id)
Loads an instance ofAttributeMappingEntityfrom the persistent store.
-
loadAll
List<AttributeMappingEntity> loadAll()
Loads all instances ofAttributeMappingEntityfrom the persistent store.
-
create
void create(Collection<? extends AttributeMappingEntity> entities)
Creates a collection ofAttributeMappingEntityand adds it to the persistent store.
-
update
void update(Collection<? extends AttributeMappingEntity> entities)
Updates a collection ofAttributeMappingEntityin the persistent store.
-
remove
void remove(Collection<? extends AttributeMappingEntity> entities)
Removes a collection ofAttributeMappingEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofAttributeMappingEntityfrom the persistent store.
-
query
List<AttributeMappingEntity> query(String query, Parameter[] parameters)
Query ofAttributeMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<AttributeMappingEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofAttributeMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-