Package com.soffid.iam.model
Interface CustomObjectRoleEntityDao
-
- All Known Implementing Classes:
CustomObjectRoleEntityDaoBase
,CustomObjectRoleEntityDaoImpl
public interface CustomObjectRoleEntityDao
DAO for Entity CustomObjectRoleEntity- See Also:
CustomObjectRoleEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(CustomObjectRoleEntity entity)
Adds an instance ofCustomObjectRoleEntity
to the persistent store.void
create(Collection<? extends CustomObjectRoleEntity> entities)
Creates a collection ofCustomObjectRoleEntity
and adds it to the persistent store.CustomObjectRoleEntity
customObjectToEntity(com.soffid.iam.api.CustomObject instance)
Transforms fromCustomObject
objectvoid
customObjectToEntity(com.soffid.iam.api.CustomObject source, CustomObjectRoleEntity target, boolean copyIfNull)
Copy data fromCustomObject
objectList<CustomObjectRoleEntity>
customObjectToEntityList(Collection<com.soffid.iam.api.CustomObject> instances)
Transforms fromCustomObject
listCustomObjectRoleEntity
load(Long id)
Loads an instance ofCustomObjectRoleEntity
from the persistent store.List<CustomObjectRoleEntity>
loadAll()
Loads all instances ofCustomObjectRoleEntity
from the persistent store.CustomObjectRoleEntity
newCustomObjectRoleEntity()
Creates an instance ofCustomObjectRoleEntity
.List<CustomObjectRoleEntity>
query(String query, Parameter[] parameters)
Query ofCustomObjectRoleEntity
from the persistent store.List<CustomObjectRoleEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofCustomObjectRoleEntity
from the persistent store.void
remove(CustomObjectRoleEntity entity)
Removes an instance ofCustomObjectRoleEntity
from the persistent store.void
remove(Long id)
Removes an instance ofCustomObjectRoleEntity
from the persistent store.void
remove(Collection<? extends CustomObjectRoleEntity> entities)
Removes a collection ofCustomObjectRoleEntity
from the persistent store.com.soffid.iam.api.CustomObject
toCustomObject(CustomObjectRoleEntity entity)
Transforms toCustomObject
objectvoid
toCustomObject(CustomObjectRoleEntity source, com.soffid.iam.api.CustomObject target)
Copy data toCustomObject
objectList<com.soffid.iam.api.CustomObject>
toCustomObjectList(Collection<CustomObjectRoleEntity> entities)
Transforms toCustomObject
listvoid
update(CustomObjectRoleEntity entity)
Updates an instance ofCustomObjectRoleEntity
at the persistent store.void
update(Collection<? extends CustomObjectRoleEntity> entities)
Updates a collection ofCustomObjectRoleEntity
in the persistent store.
-
-
-
Method Detail
-
toCustomObject
void toCustomObject(CustomObjectRoleEntity source, com.soffid.iam.api.CustomObject target)
Copy data toCustomObject
object
-
toCustomObject
com.soffid.iam.api.CustomObject toCustomObject(CustomObjectRoleEntity entity)
Transforms toCustomObject
object
-
toCustomObjectList
List<com.soffid.iam.api.CustomObject> toCustomObjectList(Collection<CustomObjectRoleEntity> entities)
Transforms toCustomObject
list
-
customObjectToEntity
void customObjectToEntity(com.soffid.iam.api.CustomObject source, CustomObjectRoleEntity target, boolean copyIfNull)
Copy data fromCustomObject
object
-
customObjectToEntity
CustomObjectRoleEntity customObjectToEntity(com.soffid.iam.api.CustomObject instance)
Transforms fromCustomObject
object
-
customObjectToEntityList
List<CustomObjectRoleEntity> customObjectToEntityList(Collection<com.soffid.iam.api.CustomObject> instances)
Transforms fromCustomObject
list
-
newCustomObjectRoleEntity
CustomObjectRoleEntity newCustomObjectRoleEntity()
Creates an instance ofCustomObjectRoleEntity
.
-
create
void create(CustomObjectRoleEntity entity)
Adds an instance ofCustomObjectRoleEntity
to the persistent store.
-
update
void update(CustomObjectRoleEntity entity)
Updates an instance ofCustomObjectRoleEntity
at the persistent store.
-
remove
void remove(CustomObjectRoleEntity entity)
Removes an instance ofCustomObjectRoleEntity
from the persistent store.
-
load
CustomObjectRoleEntity load(Long id)
Loads an instance ofCustomObjectRoleEntity
from the persistent store.
-
loadAll
List<CustomObjectRoleEntity> loadAll()
Loads all instances ofCustomObjectRoleEntity
from the persistent store.
-
create
void create(Collection<? extends CustomObjectRoleEntity> entities)
Creates a collection ofCustomObjectRoleEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends CustomObjectRoleEntity> entities)
Updates a collection ofCustomObjectRoleEntity
in the persistent store.
-
remove
void remove(Collection<? extends CustomObjectRoleEntity> entities)
Removes a collection ofCustomObjectRoleEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofCustomObjectRoleEntity
from the persistent store.
-
query
List<CustomObjectRoleEntity> query(String query, Parameter[] parameters)
Query ofCustomObjectRoleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<CustomObjectRoleEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofCustomObjectRoleEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-