Package com.soffid.iam.model
Interface ObjectMappingEntityDao
-
- All Known Implementing Classes:
ObjectMappingEntityDaoBase,ObjectMappingEntityDaoImpl
public interface ObjectMappingEntityDaoDAO for Entity ObjectMappingEntity- See Also:
es.caib.seycon.ng.model.ObjectMappingEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ObjectMappingEntity entity)Adds an instance ofObjectMappingEntityto the persistent store.voidcreate(Collection<? extends ObjectMappingEntity> entities)Creates a collection ofObjectMappingEntityand adds it to the persistent store.ObjectMappingEntityload(Long id)Loads an instance ofObjectMappingEntityfrom the persistent store.List<ObjectMappingEntity>loadAll()Loads all instances ofObjectMappingEntityfrom the persistent store.ObjectMappingEntitynewObjectMappingEntity()Creates an instance ofObjectMappingEntity.ObjectMappingEntityobjectMappingToEntity(com.soffid.iam.api.ObjectMapping instance)Transforms fromObjectMappingobjectvoidobjectMappingToEntity(com.soffid.iam.api.ObjectMapping source, ObjectMappingEntity target, boolean copyIfNull)Copy data fromObjectMappingobjectList<ObjectMappingEntity>objectMappingToEntityList(Collection<com.soffid.iam.api.ObjectMapping> instances)Transforms fromObjectMappinglistList<ObjectMappingEntity>query(String query, Parameter[] parameters)Query ofObjectMappingEntityfrom the persistent store.List<ObjectMappingEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofObjectMappingEntityfrom the persistent store.voidremove(ObjectMappingEntity entity)Removes an instance ofObjectMappingEntityfrom the persistent store.voidremove(Long id)Removes an instance ofObjectMappingEntityfrom the persistent store.voidremove(Collection<? extends ObjectMappingEntity> entities)Removes a collection ofObjectMappingEntityfrom the persistent store.com.soffid.iam.api.ObjectMappingtoObjectMapping(ObjectMappingEntity entity)Transforms toObjectMappingobjectvoidtoObjectMapping(ObjectMappingEntity source, com.soffid.iam.api.ObjectMapping target)Copy data toObjectMappingobjectList<com.soffid.iam.api.ObjectMapping>toObjectMappingList(Collection<ObjectMappingEntity> entities)Transforms toObjectMappinglistvoidupdate(ObjectMappingEntity entity)Updates an instance ofObjectMappingEntityat the persistent store.voidupdate(Collection<? extends ObjectMappingEntity> entities)Updates a collection ofObjectMappingEntityin the persistent store.
-
-
-
Method Detail
-
toObjectMapping
void toObjectMapping(ObjectMappingEntity source, com.soffid.iam.api.ObjectMapping target)
Copy data toObjectMappingobject
-
toObjectMapping
com.soffid.iam.api.ObjectMapping toObjectMapping(ObjectMappingEntity entity)
Transforms toObjectMappingobject
-
toObjectMappingList
List<com.soffid.iam.api.ObjectMapping> toObjectMappingList(Collection<ObjectMappingEntity> entities)
Transforms toObjectMappinglist
-
objectMappingToEntity
void objectMappingToEntity(com.soffid.iam.api.ObjectMapping source, ObjectMappingEntity target, boolean copyIfNull)Copy data fromObjectMappingobject
-
objectMappingToEntity
ObjectMappingEntity objectMappingToEntity(com.soffid.iam.api.ObjectMapping instance)
Transforms fromObjectMappingobject
-
objectMappingToEntityList
List<ObjectMappingEntity> objectMappingToEntityList(Collection<com.soffid.iam.api.ObjectMapping> instances)
Transforms fromObjectMappinglist
-
newObjectMappingEntity
ObjectMappingEntity newObjectMappingEntity()
Creates an instance ofObjectMappingEntity.
-
create
void create(ObjectMappingEntity entity)
Adds an instance ofObjectMappingEntityto the persistent store.
-
update
void update(ObjectMappingEntity entity)
Updates an instance ofObjectMappingEntityat the persistent store.
-
remove
void remove(ObjectMappingEntity entity)
Removes an instance ofObjectMappingEntityfrom the persistent store.
-
load
ObjectMappingEntity load(Long id)
Loads an instance ofObjectMappingEntityfrom the persistent store.
-
loadAll
List<ObjectMappingEntity> loadAll()
Loads all instances ofObjectMappingEntityfrom the persistent store.
-
create
void create(Collection<? extends ObjectMappingEntity> entities)
Creates a collection ofObjectMappingEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ObjectMappingEntity> entities)
Updates a collection ofObjectMappingEntityin the persistent store.
-
remove
void remove(Collection<? extends ObjectMappingEntity> entities)
Removes a collection ofObjectMappingEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofObjectMappingEntityfrom the persistent store.
-
query
List<ObjectMappingEntity> query(String query, Parameter[] parameters)
Query ofObjectMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ObjectMappingEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-