Package com.soffid.iam.model
Interface ProcessHierarchyEntityDao
-
- All Known Implementing Classes:
ProcessHierarchyEntityDaoBase,ProcessHierarchyEntityDaoImpl
public interface ProcessHierarchyEntityDaoDAO for Entity ProcessHierarchyEntity- See Also:
ProcessHierarchyEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcreate(ProcessHierarchyEntity entity)Adds an instance ofProcessHierarchyEntityto the persistent store.voidcreate(Collection<? extends ProcessHierarchyEntity> entities)Creates a collection ofProcessHierarchyEntityand 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 findByParentProcessHierarchyEntityload(Long id)Loads an instance ofProcessHierarchyEntityfrom the persistent store.List<ProcessHierarchyEntity>loadAll()Loads all instances ofProcessHierarchyEntityfrom the persistent store.ProcessHierarchyEntitynewProcessHierarchyEntity()Creates an instance ofProcessHierarchyEntity.List<ProcessHierarchyEntity>query(String query, Parameter[] parameters)Query ofProcessHierarchyEntityfrom the persistent store.List<ProcessHierarchyEntity>query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)Query ofProcessHierarchyEntityfrom the persistent store.voidremove(ProcessHierarchyEntity entity)Removes an instance ofProcessHierarchyEntityfrom the persistent store.voidremove(Long id)Removes an instance ofProcessHierarchyEntityfrom the persistent store.voidremove(Collection<? extends ProcessHierarchyEntity> entities)Removes a collection ofProcessHierarchyEntityfrom the persistent store.voidupdate(ProcessHierarchyEntity entity)Updates an instance ofProcessHierarchyEntityat the persistent store.voidupdate(Collection<? extends ProcessHierarchyEntity> entities)Updates a collection ofProcessHierarchyEntityin 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 ofProcessHierarchyEntityto the persistent store.
-
update
void update(ProcessHierarchyEntity entity)
Updates an instance ofProcessHierarchyEntityat the persistent store.
-
remove
void remove(ProcessHierarchyEntity entity)
Removes an instance ofProcessHierarchyEntityfrom the persistent store.
-
load
ProcessHierarchyEntity load(Long id)
Loads an instance ofProcessHierarchyEntityfrom the persistent store.
-
loadAll
List<ProcessHierarchyEntity> loadAll()
Loads all instances ofProcessHierarchyEntityfrom the persistent store.
-
create
void create(Collection<? extends ProcessHierarchyEntity> entities)
Creates a collection ofProcessHierarchyEntityand adds it to the persistent store.
-
update
void update(Collection<? extends ProcessHierarchyEntity> entities)
Updates a collection ofProcessHierarchyEntityin the persistent store.
-
remove
void remove(Collection<? extends ProcessHierarchyEntity> entities)
Removes a collection ofProcessHierarchyEntityfrom the persistent store.
-
remove
void remove(Long id)
Removes an instance ofProcessHierarchyEntityfrom the persistent store.
-
query
List<ProcessHierarchyEntity> query(String query, Parameter[] parameters)
Query ofProcessHierarchyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters
-
query
List<ProcessHierarchyEntity> query(String query, Parameter[] parameters, CriteriaSearchConfiguration criteria)
Query ofProcessHierarchyEntityfrom the persistent store. parameter query HQL Query String parameter parameters HQL Parameters parameter maxResults max number of rows to return
-
-