Package com.soffid.iam.model
Interface ObjectMappingPropertyEntityDao
-
- All Known Implementing Classes:
ObjectMappingPropertyEntityDaoBase,ObjectMappingPropertyEntityDaoImpl
public interface ObjectMappingPropertyEntityDaoDAO for Entity ObjectMappingPropertyEntity- See Also:
es.caib.seycon.ng.model.ObjectMappingPropertyEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ObjectMappingPropertyEntity entity)Adds an instance ofObjectMappingPropertyEntityto the persistent store.voidcreate(Collection<? extends ObjectMappingPropertyEntity> entities)Creates a collection ofObjectMappingPropertyEntityand adds it to the persistent store.ObjectMappingPropertyEntityload(Long id)Loads an instance ofObjectMappingPropertyEntityfrom the persistent store.List<ObjectMappingPropertyEntity>loadAll()Loads all instances ofObjectMappingPropertyEntityfrom the persistent store.ObjectMappingPropertyEntitynewObjectMappingPropertyEntity()Creates an instance ofObjectMappingPropertyEntity.ObjectMappingPropertyEntityobjectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)Transforms fromObjectMappingPropertyobjectvoidobjectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)Copy data fromObjectMappingPropertyobjectList<ObjectMappingPropertyEntity>objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)Transforms fromObjectMappingPropertylistList<ObjectMappingPropertyEntity>query(String query, Parameter[] parameters)Query ofObjectMappingPropertyEntityfrom the persistent store.List<ObjectMappingPropertyEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofObjectMappingPropertyEntityfrom the persistent store.voidremove(ObjectMappingPropertyEntity entity)Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.voidremove(Long id)Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.voidremove(Collection<? extends ObjectMappingPropertyEntity> entities)Removes a collection ofObjectMappingPropertyEntityfrom the persistent store.com.soffid.iam.api.ObjectMappingPropertytoObjectMappingProperty(ObjectMappingPropertyEntity entity)Transforms toObjectMappingPropertyobjectvoidtoObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)Copy data toObjectMappingPropertyobjectList<com.soffid.iam.api.ObjectMappingProperty>toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> entities)Transforms toObjectMappingPropertylistvoidupdate(ObjectMappingPropertyEntity entity)Updates an instance ofObjectMappingPropertyEntityat the persistent store.voidupdate(Collection<? extends ObjectMappingPropertyEntity> entities)Updates a collection ofObjectMappingPropertyEntityin the persistent store.
-
-
-
Method Detail
-
toObjectMappingProperty
void toObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)
Copy data toObjectMappingPropertyobject
-
toObjectMappingProperty
com.soffid.iam.api.ObjectMappingProperty toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingPropertyobject
-
toObjectMappingPropertyList
List<com.soffid.iam.api.ObjectMappingProperty> toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> entities)
Transforms toObjectMappingPropertylist
-
objectMappingPropertyToEntity
void objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)Copy data fromObjectMappingPropertyobject
-
objectMappingPropertyToEntity
ObjectMappingPropertyEntity objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingPropertyobject
-
objectMappingPropertyToEntityList
List<ObjectMappingPropertyEntity> objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingPropertylist
-
newObjectMappingPropertyEntity
ObjectMappingPropertyEntity newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity.
-
create
void create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntityto the persistent store.
-
update
void update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntityat the persistent store.
-
remove
void remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.
-
load
ObjectMappingPropertyEntity load(Long id)
Loads an instance ofObjectMappingPropertyEntityfrom the persistent store.
-
loadAll
List<ObjectMappingPropertyEntity> loadAll()
Loads all instances ofObjectMappingPropertyEntityfrom the persistent store.
-
create
void create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntityin the persistent store.
-
remove
void remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofObjectMappingPropertyEntityfrom the persistent store.
-
query
List<ObjectMappingPropertyEntity> query(String query, Parameter[] parameters)
Query ofObjectMappingPropertyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ObjectMappingPropertyEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-