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