Package com.soffid.iam.model
Interface UserProcessEntityDao
-
- All Known Implementing Classes:
UserProcessEntityDaoBase
,UserProcessEntityDaoImpl
public interface UserProcessEntityDao
DAO for Entity UserProcessEntity- See Also:
es.caib.seycon.ng.model.UsuariWFProcessEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserProcessEntity
bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess instance)
Transforms fromBpmUserProcess
objectvoid
bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromBpmUserProcess
objectList<UserProcessEntity>
bpmUserProcessToEntityList(Collection<com.soffid.iam.api.BpmUserProcess> instances)
Transforms fromBpmUserProcess
listvoid
create(UserProcessEntity entity)
Adds an instance ofUserProcessEntity
to the persistent store.void
create(Collection<? extends UserProcessEntity> entities)
Creates a collection ofUserProcessEntity
and adds it to the persistent store.Collection<UserProcessEntity>
findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration finderCollection<UserProcessEntity>
findByProcessId(Long processId)
Operation findByProcessIdCollection<UserProcessEntity>
findByUserName(CriteriaSearchConfiguration criteria, String userName)
CriteriaSearchConfiguration finderCollection<UserProcessEntity>
findByUserName(String userName)
Operation findByUserNameCollection<UserProcessEntity>
findByUserNationalId(CriteriaSearchConfiguration criteria, String nationalId)
CriteriaSearchConfiguration finderCollection<UserProcessEntity>
findByUserNationalId(String nationalId)
Operation findByUserNationalIdUserProcessEntity
load(Long id)
Loads an instance ofUserProcessEntity
from the persistent store.List<UserProcessEntity>
loadAll()
Loads all instances ofUserProcessEntity
from the persistent store.UserProcessEntity
newUserProcessEntity()
Creates an instance ofUserProcessEntity
.List<UserProcessEntity>
query(String query, Parameter[] parameters)
Query ofUserProcessEntity
from the persistent store.List<UserProcessEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofUserProcessEntity
from the persistent store.void
remove(UserProcessEntity entity)
Removes an instance ofUserProcessEntity
from the persistent store.void
remove(Long id)
Removes an instance ofUserProcessEntity
from the persistent store.void
remove(Collection<? extends UserProcessEntity> entities)
Removes a collection ofUserProcessEntity
from the persistent store.com.soffid.iam.api.BpmUserProcess
toBpmUserProcess(UserProcessEntity entity)
Transforms toBpmUserProcess
objectvoid
toBpmUserProcess(UserProcessEntity source, com.soffid.iam.api.BpmUserProcess target)
Copy data toBpmUserProcess
objectList<com.soffid.iam.api.BpmUserProcess>
toBpmUserProcessList(Collection<UserProcessEntity> entities)
Transforms toBpmUserProcess
listes.caib.seycon.ng.comu.UsuariWFProcess
toUsuariWFProcess(UserProcessEntity entity)
Transforms toUsuariWFProcess
objectvoid
toUsuariWFProcess(UserProcessEntity source, es.caib.seycon.ng.comu.UsuariWFProcess target)
Copy data toUsuariWFProcess
objectList<es.caib.seycon.ng.comu.UsuariWFProcess>
toUsuariWFProcessList(Collection<UserProcessEntity> entities)
Transforms toUsuariWFProcess
listvoid
update(UserProcessEntity entity)
Updates an instance ofUserProcessEntity
at the persistent store.void
update(Collection<? extends UserProcessEntity> entities)
Updates a collection ofUserProcessEntity
in the persistent store.UserProcessEntity
usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess instance)
Transforms fromUsuariWFProcess
objectvoid
usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromUsuariWFProcess
objectList<UserProcessEntity>
usuariWFProcessToEntityList(Collection<es.caib.seycon.ng.comu.UsuariWFProcess> instances)
Transforms fromUsuariWFProcess
list
-
-
-
Method Detail
-
findByUserName
Collection<UserProcessEntity> findByUserName(String userName)
Operation findByUserName- Parameters:
userName
-- Returns:
-
findByUserName
Collection<UserProcessEntity> findByUserName(CriteriaSearchConfiguration criteria, String userName)
CriteriaSearchConfiguration finder
-
findByProcessId
Collection<UserProcessEntity> findByProcessId(Long processId)
Operation findByProcessId- Parameters:
processId
-- Returns:
-
findByProcessId
Collection<UserProcessEntity> findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration finder
-
findByUserNationalId
Collection<UserProcessEntity> findByUserNationalId(String nationalId)
Operation findByUserNationalId- Parameters:
nationalId
-- Returns:
-
findByUserNationalId
Collection<UserProcessEntity> findByUserNationalId(CriteriaSearchConfiguration criteria, String nationalId)
CriteriaSearchConfiguration finder
-
toBpmUserProcess
void toBpmUserProcess(UserProcessEntity source, com.soffid.iam.api.BpmUserProcess target)
Copy data toBpmUserProcess
object
-
toBpmUserProcess
com.soffid.iam.api.BpmUserProcess toBpmUserProcess(UserProcessEntity entity)
Transforms toBpmUserProcess
object
-
toBpmUserProcessList
List<com.soffid.iam.api.BpmUserProcess> toBpmUserProcessList(Collection<UserProcessEntity> entities)
Transforms toBpmUserProcess
list
-
bpmUserProcessToEntity
void bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromBpmUserProcess
object
-
bpmUserProcessToEntity
UserProcessEntity bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess instance)
Transforms fromBpmUserProcess
object
-
bpmUserProcessToEntityList
List<UserProcessEntity> bpmUserProcessToEntityList(Collection<com.soffid.iam.api.BpmUserProcess> instances)
Transforms fromBpmUserProcess
list
-
toUsuariWFProcess
void toUsuariWFProcess(UserProcessEntity source, es.caib.seycon.ng.comu.UsuariWFProcess target)
Copy data toUsuariWFProcess
object
-
toUsuariWFProcess
es.caib.seycon.ng.comu.UsuariWFProcess toUsuariWFProcess(UserProcessEntity entity)
Transforms toUsuariWFProcess
object
-
toUsuariWFProcessList
List<es.caib.seycon.ng.comu.UsuariWFProcess> toUsuariWFProcessList(Collection<UserProcessEntity> entities)
Transforms toUsuariWFProcess
list
-
usuariWFProcessToEntity
void usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromUsuariWFProcess
object
-
usuariWFProcessToEntity
UserProcessEntity usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess instance)
Transforms fromUsuariWFProcess
object
-
usuariWFProcessToEntityList
List<UserProcessEntity> usuariWFProcessToEntityList(Collection<es.caib.seycon.ng.comu.UsuariWFProcess> instances)
Transforms fromUsuariWFProcess
list
-
newUserProcessEntity
UserProcessEntity newUserProcessEntity()
Creates an instance ofUserProcessEntity
.
-
create
void create(UserProcessEntity entity)
Adds an instance ofUserProcessEntity
to the persistent store.
-
update
void update(UserProcessEntity entity)
Updates an instance ofUserProcessEntity
at the persistent store.
-
remove
void remove(UserProcessEntity entity)
Removes an instance ofUserProcessEntity
from the persistent store.
-
load
UserProcessEntity load(Long id)
Loads an instance ofUserProcessEntity
from the persistent store.
-
loadAll
List<UserProcessEntity> loadAll()
Loads all instances ofUserProcessEntity
from the persistent store.
-
create
void create(Collection<? extends UserProcessEntity> entities)
Creates a collection ofUserProcessEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends UserProcessEntity> entities)
Updates a collection ofUserProcessEntity
in the persistent store.
-
remove
void remove(Collection<? extends UserProcessEntity> entities)
Removes a collection ofUserProcessEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofUserProcessEntity
from the persistent store.
-
query
List<UserProcessEntity> query(String query, Parameter[] parameters)
Query ofUserProcessEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<UserProcessEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofUserProcessEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-