Package com.soffid.iam.model
Interface ProcessHierarchyEntityDao
-
- All Known Implementing Classes:
ProcessHierarchyEntityDaoBase
,ProcessHierarchyEntityDaoImpl
public interface ProcessHierarchyEntityDao
DAO for Entity ProcessHierarchyEntity- See Also:
ProcessHierarchyEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
create(ProcessHierarchyEntity entity)
Adds an instance ofProcessHierarchyEntity
to the persistent store.void
create(Collection<? extends ProcessHierarchyEntity> entities)
Creates a collection ofProcessHierarchyEntity
and adds it to the persistent store.List<ProcessHierarchyEntity>
findByChildren(CriteriaSearchConfiguration criteria, Long childProcess)
CriteriaSearchConfiguration finderList<ProcessHierarchyEntity>
findByChildren(Long childProcess)
Operation findByChildrenList<ProcessHierarchyEntity>
findByParent(CriteriaSearchConfiguration criteria, Long parentProcess)
CriteriaSearchConfiguration finderList<ProcessHierarchyEntity>
findByParent(Long parentProcess)
Operation findByParentProcessHierarchyEntity
load(Long id)
Loads an instance ofProcessHierarchyEntity
from the persistent store.List<ProcessHierarchyEntity>
loadAll()
Loads all instances ofProcessHierarchyEntity
from the persistent store.ProcessHierarchyEntity
newProcessHierarchyEntity()
Creates an instance ofProcessHierarchyEntity
.List<ProcessHierarchyEntity>
query(String query, Parameter[] parameters)
Query ofProcessHierarchyEntity
from the persistent store.List<ProcessHierarchyEntity>
query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofProcessHierarchyEntity
from the persistent store.void
remove(ProcessHierarchyEntity entity)
Removes an instance ofProcessHierarchyEntity
from the persistent store.void
remove(Long id)
Removes an instance ofProcessHierarchyEntity
from the persistent store.void
remove(Collection<? extends ProcessHierarchyEntity> entities)
Removes a collection ofProcessHierarchyEntity
from the persistent store.void
update(ProcessHierarchyEntity entity)
Updates an instance ofProcessHierarchyEntity
at the persistent store.void
update(Collection<? extends ProcessHierarchyEntity> entities)
Updates a collection ofProcessHierarchyEntity
in the persistent store.
-
-
-
Method Detail
-
findByChildren
List<ProcessHierarchyEntity> findByChildren(Long childProcess)
Operation findByChildren- Parameters:
childProcess
-- Returns:
-
findByChildren
List<ProcessHierarchyEntity> findByChildren(CriteriaSearchConfiguration criteria, Long childProcess)
CriteriaSearchConfiguration finder
-
findByParent
List<ProcessHierarchyEntity> findByParent(Long parentProcess)
Operation findByParent- Parameters:
parentProcess
-- Returns:
-
findByParent
List<ProcessHierarchyEntity> findByParent(CriteriaSearchConfiguration criteria, Long parentProcess)
CriteriaSearchConfiguration finder
-
newProcessHierarchyEntity
ProcessHierarchyEntity newProcessHierarchyEntity()
Creates an instance ofProcessHierarchyEntity
.
-
create
void create(ProcessHierarchyEntity entity)
Adds an instance ofProcessHierarchyEntity
to the persistent store.
-
update
void update(ProcessHierarchyEntity entity)
Updates an instance ofProcessHierarchyEntity
at the persistent store.
-
remove
void remove(ProcessHierarchyEntity entity)
Removes an instance ofProcessHierarchyEntity
from the persistent store.
-
load
ProcessHierarchyEntity load(Long id)
Loads an instance ofProcessHierarchyEntity
from the persistent store.
-
loadAll
List<ProcessHierarchyEntity> loadAll()
Loads all instances ofProcessHierarchyEntity
from the persistent store.
-
create
void create(Collection<? extends ProcessHierarchyEntity> entities)
Creates a collection ofProcessHierarchyEntity
and adds it to the persistent store.
-
update
void update(Collection<? extends ProcessHierarchyEntity> entities)
Updates a collection ofProcessHierarchyEntity
in the persistent store.
-
remove
void remove(Collection<? extends ProcessHierarchyEntity> entities)
Removes a collection ofProcessHierarchyEntity
from the persistent store.
-
remove
void remove(Long id)
Removes an instance ofProcessHierarchyEntity
from the persistent store.
-
query
List<ProcessHierarchyEntity> query(String query, Parameter[] parameters)
Query ofProcessHierarchyEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ProcessHierarchyEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofProcessHierarchyEntity
from the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-