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