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