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