Interface BusinessProcessServiceDao
- All Known Implementing Classes:
DefaultBusinessProcessServiceDao
public interface BusinessProcessServiceDao
-
Method Summary
Modifier and TypeMethodDescriptionfindBusinessProcessTaskActions(PK businessProcessPk) Finds all BusinessProcess task actions.findProcessByName(String processName) Search for process that has processName.getProcess(String processName) Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Details
-
getProcess
@Deprecated(since="6.2.0", forRemoval=true) @Nullable BusinessProcessModel getProcess(@Nonnull String processName) Deprecated, for removal: This API element is subject to removal in a future version.since 6.2.0 - in favor offindProcessByName(String)Search for process that has processName.- Parameters:
processName- process name- Returns:
- process or
nullin cas of process has not been found - Throws:
NullPointerException- if parameterprocessNameis null
-
findProcessByName
Search for process that has processName.- Parameters:
processName- process name- Returns:
- process or
nullin cas of process has not been found - Throws:
NullPointerException- if parameterprocessNameis null
-
findBusinessProcessTaskActions
Finds all BusinessProcess task actions.- Parameters:
businessProcessPk- PK of a BusinessProcess- Returns:
- list of Task actions or empty
List - Throws:
NullPointerException- if parameterbusinessProcessPkis null
-
findProcessByName(String)