Package com.soffid.iam.model
Interface SystemGroupEntityDao
-
- All Known Implementing Classes:
SystemGroupEntityDaoBase
,SystemGroupEntityDaoImpl
public interface SystemGroupEntityDao
DAO for Entity SystemGroupEntity- See Also:
es.caib.seycon.ng.model.GrupDispatcherEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(SystemGroupEntity entity)
Adds an instance ofSystemGroupEntity
to the persistent store.void
create(Collection<? extends SystemGroupEntity> entities)
Creates a collection ofSystemGroupEntity
and adds it to the persistent store.Collection<SystemGroupEntity>
findBySystem(CriteriaSearchConfiguration criteria, String systemName)
CriteriaSearchConfiguration finderCollection<SystemGroupEntity>
findBySystem(String systemName)
Operation findBySystemSystemGroupEntity
grupDispatcherToEntity(es.caib.seycon.ng.comu.GrupDispatcher instance)
Transforms fromGrupDispatcher
objectvoid
grupDispatcherToEntity(es.caib.seycon.ng.comu.GrupDispatcher source, SystemGroupEntity target, boolean copyIfNull)
Copy data fromGrupDispatcher
objectList<SystemGroupEntity>
grupDispatcherToEntityList(Collection<es.caib.seycon.ng.comu.GrupDispatcher> instances)
Transforms fromGrupDispatcher
listSystemGroupEntity
load(Long id)
Loads an instance ofSystemGroupEntity
from the persistent store.List<SystemGroupEntity>
loadAll()
Loads all instances ofSystemGroupEntity
from the persistent store.SystemGroupEntity
newSystemGroupEntity()
Creates an instance ofSystemGroupEntity
.List<SystemGroupEntity>
query(String query, Parameter[] parameters)
Query ofSystemGroupEntity
from the persistent store.List<SystemGroupEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSystemGroupEntity
from the persistent store.void
remove(SystemGroupEntity entity)
Removes an instance ofSystemGroupEntity
from the persistent store.void
remove(Long id)
Removes an instance ofSystemGroupEntity
from the persistent store.void
remove(Collection<? extends SystemGroupEntity> entities)
Removes a collection ofSystemGroupEntity
from the persistent store.SystemGroupEntity
systemGroupToEntity(com.soffid.iam.api.SystemGroup instance)
Transforms fromSystemGroup
objectvoid
systemGroupToEntity(com.soffid.iam.api.SystemGroup source, SystemGroupEntity target, boolean copyIfNull)
Copy data fromSystemGroup
objectList<SystemGroupEntity>
systemGroupToEntityList(Collection<com.soffid.iam.api.SystemGroup> instances)
Transforms fromSystemGroup
listes.caib.seycon.ng.comu.GrupDispatcher
toGrupDispatcher(SystemGroupEntity entity)
Transforms toGrupDispatcher
objectvoid
toGrupDispatcher(SystemGroupEntity source, es.caib.seycon.ng.comu.GrupDispatcher target)
Copy data toGrupDispatcher
objectList<es.caib.seycon.ng.comu.GrupDispatcher>
toGrupDispatcherList(Collection<SystemGroupEntity> entities)
Transforms toGrupDispatcher
listcom.soffid.iam.api.SystemGroup
toSystemGroup(SystemGroupEntity entity)
Transforms toSystemGroup
objectvoid
toSystemGroup(SystemGroupEntity source, com.soffid.iam.api.SystemGroup target)
Copy data toSystemGroup
objectList<com.soffid.iam.api.SystemGroup>
toSystemGroupList(Collection<SystemGroupEntity> entities)
Transforms toSystemGroup
listvoid
update(SystemGroupEntity entity)
Updates an instance ofSystemGroupEntity
at the persistent store.void
update(Collection<? extends SystemGroupEntity> entities)
Updates a collection ofSystemGroupEntity
in the persistent store.
-
-
-
Method Detail
-
findBySystem
Collection<SystemGroupEntity> findBySystem(String systemName)
Operation findBySystem- Parameters:
systemName
-- Returns:
-
findBySystem
Collection<SystemGroupEntity> findBySystem(CriteriaSearchConfiguration criteria, String systemName)
CriteriaSearchConfiguration finder
-
toSystemGroup
void toSystemGroup(SystemGroupEntity source, com.soffid.iam.api.SystemGroup target)
Copy data toSystemGroup
object
-
toSystemGroup
com.soffid.iam.api.SystemGroup toSystemGroup(SystemGroupEntity entity)
Transforms toSystemGroup
object
-
toSystemGroupList
List<com.soffid.iam.api.SystemGroup> toSystemGroupList(Collection<SystemGroupEntity> entities)
Transforms toSystemGroup
list
-
systemGroupToEntity
void systemGroupToEntity(com.soffid.iam.api.SystemGroup source, SystemGroupEntity target, boolean copyIfNull)
Copy data fromSystemGroup
object
-
systemGroupToEntity
SystemGroupEntity systemGroupToEntity(com.soffid.iam.api.SystemGroup instance)
Transforms fromSystemGroup
object
-
systemGroupToEntityList
List<SystemGroupEntity> systemGroupToEntityList(Collection<com.soffid.iam.api.SystemGroup> instances)
Transforms fromSystemGroup
list
-
toGrupDispatcher
void toGrupDispatcher(SystemGroupEntity source, es.caib.seycon.ng.comu.GrupDispatcher target)
Copy data toGrupDispatcher
object
-
toGrupDispatcher
es.caib.seycon.ng.comu.GrupDispatcher toGrupDispatcher(SystemGroupEntity entity)
Transforms toGrupDispatcher
object
-
toGrupDispatcherList
List<es.caib.seycon.ng.comu.GrupDispatcher> toGrupDispatcherList(Collection<SystemGroupEntity> entities)
Transforms toGrupDispatcher
list
-
grupDispatcherToEntity
void grupDispatcherToEntity(es.caib.seycon.ng.comu.GrupDispatcher source, SystemGroupEntity target, boolean copyIfNull)
Copy data fromGrupDispatcher
object
-
grupDispatcherToEntity
SystemGroupEntity grupDispatcherToEntity(es.caib.seycon.ng.comu.GrupDispatcher instance)
Transforms fromGrupDispatcher
object
-
grupDispatcherToEntityList
List<SystemGroupEntity> grupDispatcherToEntityList(Collection<es.caib.seycon.ng.comu.GrupDispatcher> instances)
Transforms fromGrupDispatcher
list
-
newSystemGroupEntity
SystemGroupEntity newSystemGroupEntity()
Creates an instance ofSystemGroupEntity
.
-
create
void create(SystemGroupEntity entity)
Adds an instance ofSystemGroupEntity
to the persistent store.
-
update
void update(SystemGroupEntity entity)
Updates an instance ofSystemGroupEntity
at the persistent store.
-
remove
void remove(SystemGroupEntity entity)
Removes an instance ofSystemGroupEntity
from the persistent store.
-
load
SystemGroupEntity load(Long id)
Loads an instance ofSystemGroupEntity
from the persistent store.
-
loadAll
List<SystemGroupEntity> loadAll()
Loads all instances ofSystemGroupEntity
from the persistent store.
-
create
void create(Collection<? extends SystemGroupEntity> entities)
Creates a collection ofSystemGroupEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends SystemGroupEntity> entities)
Updates a collection ofSystemGroupEntity
in the persistent store.
-
remove
void remove(Collection<? extends SystemGroupEntity> entities)
Removes a collection ofSystemGroupEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofSystemGroupEntity
from the persistent store.
-
query
List<SystemGroupEntity> query(String query, Parameter[] parameters)
Query ofSystemGroupEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<SystemGroupEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofSystemGroupEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-