Package com.soffid.iam.model
Class UserProcessEntityDaoBase
- java.lang.Object
-
- org.springframework.dao.support.DaoSupport
-
- org.springframework.orm.hibernate3.support.HibernateDaoSupport
-
- com.soffid.iam.model.UserProcessEntityDaoBase
-
- All Implemented Interfaces:
UserProcessEntityDao
,org.springframework.beans.factory.InitializingBean
- Direct Known Subclasses:
UserProcessEntityDaoImpl
public abstract class UserProcessEntityDaoBase extends org.springframework.orm.hibernate3.support.HibernateDaoSupport implements UserProcessEntityDao
DAO Base for Entity UserProcessEntity
-
-
Constructor Summary
Constructors Constructor Description UserProcessEntityDaoBase()
-
Method Summary
All Methods Instance Methods Concrete 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 implementationCollection<UserProcessEntity>
findByProcessId(Long processId)
Operation findByProcessIdCollection<UserProcessEntity>
findByProcessId(String queryString, CriteriaSearchConfiguration criteria, Long processId)
Internal implementationCollection<UserProcessEntity>
findByUserName(CriteriaSearchConfiguration criteria, String userName)
CriteriaSearchConfiguration implementationCollection<UserProcessEntity>
findByUserName(String userName)
Operation findByUserNameCollection<UserProcessEntity>
findByUserName(String queryString, CriteriaSearchConfiguration criteria, String userName)
Internal implementationCollection<UserProcessEntity>
findByUserNationalId(CriteriaSearchConfiguration criteria, String nationalId)
CriteriaSearchConfiguration implementationCollection<UserProcessEntity>
findByUserNationalId(String nationalId)
Operation findByUserNationalIdCollection<UserProcessEntity>
findByUserNationalId(String queryString, CriteriaSearchConfiguration criteria, String nationalId)
Internal implementationUserProcessEntity
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 queryString, Parameter[] parameters)
Query ofUserProcessEntity
from the persistent store.List<UserProcessEntity>
query(String queryString, 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> instances)
Transforms toBpmUserProcess
listes.caib.seycon.ng.comu.UsuariWFProcess
toUsuariWFProcess(UserProcessEntity entity)
Transforms toBpmUserProcess
objectvoid
toUsuariWFProcess(UserProcessEntity source, es.caib.seycon.ng.comu.UsuariWFProcess target)
Copy data toUsuariWFProcess
objectList<es.caib.seycon.ng.comu.UsuariWFProcess>
toUsuariWFProcessList(Collection<UserProcessEntity> instances)
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 fromBpmUserProcess
list-
Methods inherited from class org.springframework.orm.hibernate3.support.HibernateDaoSupport
checkDaoConfig, closeSessionIfNecessary, convertHibernateAccessException, createHibernateTemplate, getHibernateTemplate, getSession, getSession, getSessionFactory, releaseSession, setHibernateTemplate, setSessionFactory
-
-
-
-
Method Detail
-
findByUserName
public Collection<UserProcessEntity> findByUserName(String userName)
Operation findByUserName- Specified by:
findByUserName
in interfaceUserProcessEntityDao
- Parameters:
userName
-- Returns:
-
findByUserName
public Collection<UserProcessEntity> findByUserName(CriteriaSearchConfiguration criteria, String userName)
CriteriaSearchConfiguration implementation- Specified by:
findByUserName
in interfaceUserProcessEntityDao
-
findByUserName
public Collection<UserProcessEntity> findByUserName(String queryString, CriteriaSearchConfiguration criteria, String userName)
Internal implementation
-
findByProcessId
public Collection<UserProcessEntity> findByProcessId(Long processId)
Operation findByProcessId- Specified by:
findByProcessId
in interfaceUserProcessEntityDao
- Parameters:
processId
-- Returns:
-
findByProcessId
public Collection<UserProcessEntity> findByProcessId(CriteriaSearchConfiguration criteria, Long processId)
CriteriaSearchConfiguration implementation- Specified by:
findByProcessId
in interfaceUserProcessEntityDao
-
findByProcessId
public Collection<UserProcessEntity> findByProcessId(String queryString, CriteriaSearchConfiguration criteria, Long processId)
Internal implementation
-
findByUserNationalId
public Collection<UserProcessEntity> findByUserNationalId(String nationalId)
Operation findByUserNationalId- Specified by:
findByUserNationalId
in interfaceUserProcessEntityDao
- Parameters:
nationalId
-- Returns:
-
findByUserNationalId
public Collection<UserProcessEntity> findByUserNationalId(CriteriaSearchConfiguration criteria, String nationalId)
CriteriaSearchConfiguration implementation- Specified by:
findByUserNationalId
in interfaceUserProcessEntityDao
-
findByUserNationalId
public Collection<UserProcessEntity> findByUserNationalId(String queryString, CriteriaSearchConfiguration criteria, String nationalId)
Internal implementation
-
toBpmUserProcess
public void toBpmUserProcess(UserProcessEntity source, com.soffid.iam.api.BpmUserProcess target)
Copy data toBpmUserProcess
object- Specified by:
toBpmUserProcess
in interfaceUserProcessEntityDao
-
toBpmUserProcess
public com.soffid.iam.api.BpmUserProcess toBpmUserProcess(UserProcessEntity entity)
Transforms toBpmUserProcess
object- Specified by:
toBpmUserProcess
in interfaceUserProcessEntityDao
-
toBpmUserProcessList
public List<com.soffid.iam.api.BpmUserProcess> toBpmUserProcessList(Collection<UserProcessEntity> instances)
Transforms toBpmUserProcess
list- Specified by:
toBpmUserProcessList
in interfaceUserProcessEntityDao
-
bpmUserProcessToEntity
public void bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromBpmUserProcess
object- Specified by:
bpmUserProcessToEntity
in interfaceUserProcessEntityDao
-
bpmUserProcessToEntity
public UserProcessEntity bpmUserProcessToEntity(com.soffid.iam.api.BpmUserProcess instance)
Transforms fromBpmUserProcess
object- Specified by:
bpmUserProcessToEntity
in interfaceUserProcessEntityDao
-
bpmUserProcessToEntityList
public List<UserProcessEntity> bpmUserProcessToEntityList(Collection<com.soffid.iam.api.BpmUserProcess> instances)
Transforms fromBpmUserProcess
list- Specified by:
bpmUserProcessToEntityList
in interfaceUserProcessEntityDao
-
toUsuariWFProcess
public void toUsuariWFProcess(UserProcessEntity source, es.caib.seycon.ng.comu.UsuariWFProcess target)
Description copied from interface:UserProcessEntityDao
Copy data toUsuariWFProcess
object- Specified by:
toUsuariWFProcess
in interfaceUserProcessEntityDao
-
toUsuariWFProcess
public es.caib.seycon.ng.comu.UsuariWFProcess toUsuariWFProcess(UserProcessEntity entity)
Transforms toBpmUserProcess
object- Specified by:
toUsuariWFProcess
in interfaceUserProcessEntityDao
-
toUsuariWFProcessList
public List<es.caib.seycon.ng.comu.UsuariWFProcess> toUsuariWFProcessList(Collection<UserProcessEntity> instances)
Transforms toUsuariWFProcess
list- Specified by:
toUsuariWFProcessList
in interfaceUserProcessEntityDao
-
usuariWFProcessToEntity
public void usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess source, UserProcessEntity target, boolean copyIfNull)
Copy data fromUsuariWFProcess
object- Specified by:
usuariWFProcessToEntity
in interfaceUserProcessEntityDao
-
usuariWFProcessToEntity
public UserProcessEntity usuariWFProcessToEntity(es.caib.seycon.ng.comu.UsuariWFProcess instance)
Transforms fromUsuariWFProcess
object- Specified by:
usuariWFProcessToEntity
in interfaceUserProcessEntityDao
-
usuariWFProcessToEntityList
public List<UserProcessEntity> usuariWFProcessToEntityList(Collection<es.caib.seycon.ng.comu.UsuariWFProcess> instances)
Transforms fromBpmUserProcess
list- Specified by:
usuariWFProcessToEntityList
in interfaceUserProcessEntityDao
-
newUserProcessEntity
public UserProcessEntity newUserProcessEntity()
Creates an instance ofUserProcessEntity
.- Specified by:
newUserProcessEntity
in interfaceUserProcessEntityDao
-
load
public UserProcessEntity load(Long id)
Loads an instance ofUserProcessEntity
from the persistent store.- Specified by:
load
in interfaceUserProcessEntityDao
-
loadAll
public List<UserProcessEntity> loadAll()
Loads all instances ofUserProcessEntity
from the persistent store.- Specified by:
loadAll
in interfaceUserProcessEntityDao
-
create
public void create(UserProcessEntity entity)
Adds an instance ofUserProcessEntity
to the persistent store.- Specified by:
create
in interfaceUserProcessEntityDao
-
update
public void update(UserProcessEntity entity)
Updates an instance ofUserProcessEntity
at the persistent store.- Specified by:
update
in interfaceUserProcessEntityDao
-
remove
public void remove(UserProcessEntity entity)
Removes an instance ofUserProcessEntity
from the persistent store.- Specified by:
remove
in interfaceUserProcessEntityDao
-
create
public void create(Collection<? extends UserProcessEntity> entities)
Creates a collection ofUserProcessEntity
and adds it to the persistent store.- Specified by:
create
in interfaceUserProcessEntityDao
-
update
public void update(Collection<? extends UserProcessEntity> entities)
Updates a collection ofUserProcessEntity
in the persistent store.- Specified by:
update
in interfaceUserProcessEntityDao
-
remove
public void remove(Collection<? extends UserProcessEntity> entities)
Removes a collection ofUserProcessEntity
from the persistent store.- Specified by:
remove
in interfaceUserProcessEntityDao
-
remove
public void remove(Long id)
Removes an instance ofUserProcessEntity
from the persistent store.- Specified by:
remove
in interfaceUserProcessEntityDao
-
query
public List<UserProcessEntity> query(String queryString, Parameter[] parameters)
Query ofUserProcessEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters- Specified by:
query
in interfaceUserProcessEntityDao
-
query
public List<UserProcessEntity> query(String queryString, 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- Specified by:
query
in interfaceUserProcessEntityDao
-
-