Package com.soffid.iam.model
Interface ObjectMappingPropertyEntityDao
-
- All Known Implementing Classes:
ObjectMappingPropertyEntityDaoBase
,ObjectMappingPropertyEntityDaoImpl
public interface ObjectMappingPropertyEntityDao
DAO for Entity ObjectMappingPropertyEntity- See Also:
es.caib.seycon.ng.model.ObjectMappingPropertyEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntity
to the persistent store.void
create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntity
and adds it to the persistent store.ObjectMappingPropertyEntity
load(Long id)
Loads an instance ofObjectMappingPropertyEntity
from the persistent store.List<ObjectMappingPropertyEntity>
loadAll()
Loads all instances ofObjectMappingPropertyEntity
from the persistent store.ObjectMappingPropertyEntity
newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity
.ObjectMappingPropertyEntity
objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingProperty
objectvoid
objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)
Copy data fromObjectMappingProperty
objectList<ObjectMappingPropertyEntity>
objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingProperty
listList<ObjectMappingPropertyEntity>
query(String query, Parameter[] parameters)
Query ofObjectMappingPropertyEntity
from the persistent store.List<ObjectMappingPropertyEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntity
from the persistent store.void
remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.void
remove(Long id)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.void
remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntity
from the persistent store.com.soffid.iam.api.ObjectMappingProperty
toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingProperty
objectvoid
toObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)
Copy data toObjectMappingProperty
objectList<com.soffid.iam.api.ObjectMappingProperty>
toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> entities)
Transforms toObjectMappingProperty
listvoid
update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntity
at the persistent store.void
update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntity
in the persistent store.
-
-
-
Method Detail
-
toObjectMappingProperty
void toObjectMappingProperty(ObjectMappingPropertyEntity source, com.soffid.iam.api.ObjectMappingProperty target)
Copy data toObjectMappingProperty
object
-
toObjectMappingProperty
com.soffid.iam.api.ObjectMappingProperty toObjectMappingProperty(ObjectMappingPropertyEntity entity)
Transforms toObjectMappingProperty
object
-
toObjectMappingPropertyList
List<com.soffid.iam.api.ObjectMappingProperty> toObjectMappingPropertyList(Collection<ObjectMappingPropertyEntity> entities)
Transforms toObjectMappingProperty
list
-
objectMappingPropertyToEntity
void objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty source, ObjectMappingPropertyEntity target, boolean copyIfNull)
Copy data fromObjectMappingProperty
object
-
objectMappingPropertyToEntity
ObjectMappingPropertyEntity objectMappingPropertyToEntity(com.soffid.iam.api.ObjectMappingProperty instance)
Transforms fromObjectMappingProperty
object
-
objectMappingPropertyToEntityList
List<ObjectMappingPropertyEntity> objectMappingPropertyToEntityList(Collection<com.soffid.iam.api.ObjectMappingProperty> instances)
Transforms fromObjectMappingProperty
list
-
newObjectMappingPropertyEntity
ObjectMappingPropertyEntity newObjectMappingPropertyEntity()
Creates an instance ofObjectMappingPropertyEntity
.
-
create
void create(ObjectMappingPropertyEntity entity)
Adds an instance ofObjectMappingPropertyEntity
to the persistent store.
-
update
void update(ObjectMappingPropertyEntity entity)
Updates an instance ofObjectMappingPropertyEntity
at the persistent store.
-
remove
void remove(ObjectMappingPropertyEntity entity)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.
-
load
ObjectMappingPropertyEntity load(Long id)
Loads an instance ofObjectMappingPropertyEntity
from the persistent store.
-
loadAll
List<ObjectMappingPropertyEntity> loadAll()
Loads all instances ofObjectMappingPropertyEntity
from the persistent store.
-
create
void create(Collection<? extends ObjectMappingPropertyEntity> entities)
Creates a collection ofObjectMappingPropertyEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ObjectMappingPropertyEntity> entities)
Updates a collection ofObjectMappingPropertyEntity
in the persistent store.
-
remove
void remove(Collection<? extends ObjectMappingPropertyEntity> entities)
Removes a collection ofObjectMappingPropertyEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofObjectMappingPropertyEntity
from the persistent store.
-
query
List<ObjectMappingPropertyEntity> query(String query, Parameter[] parameters)
Query ofObjectMappingPropertyEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ObjectMappingPropertyEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofObjectMappingPropertyEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-