Uses of Class
net.pricefx.common.dto.creationworkflow.CreationWorkflowStepDefinition
Package
Description
Provides API related to scripting, including interface
PublicGroovyAPI
, that represents what can be reached in the Groovy element syntax as api
.-
Uses of CreationWorkflowStepDefinition in net.pricefx.common.dto.creationworkflow
Modifier and TypeMethodDescriptionSets the label of the Creation Workflow step (theCreationWorkflowStepDefinition
object).
Example:CreationWorkflowStepDefinition.withShouldSendNotification
(boolean shouldSendNotification) Set tofalse
to not send the notification to users when the document with assigned users or user groups is created.
Default:true
CreationWorkflowStepDefinition.withUserAssignee
(String userAssigneeLoginName) Assigns a user to the Creation Workflow Step.CreationWorkflowStepDefinition.withUserAssignees
(String... userAssigneeLoginName) Assigns one or more users to the Creation Workflow Step.CreationWorkflowStepDefinition.withUserGroupAssignee
(String userGroupAssigneeUniqueName) Assigns a user group to the Creation Workflow Step.CreationWorkflowStepDefinition.withUserGroupAssignees
(String... userGroupAssigneeUniqueNames) Assigns one or more user groups to the Creation Workflow Step.CreationWorkflowStepDefinition.withUserGroupWatchers
(String... userGroupWatcherUniqueNames) Assigns user group(s) as watchers to the Creation Workflow Step.
Example:CreationWorkflowStepDefinition.withUserWatchers
(String... userWatcherLoginNames) Adds users as watchers to the Creation Workflow Step.
Example:Modifier and TypeMethodDescriptionCreationWorkflowDefinition.getSteps()
Retrieves a list of all steps in the given workflow.Modifier and TypeMethodDescriptionCreationWorkflowDefinition.withSteps
(CreationWorkflowStepDefinition... steps) Adds specified steps (must be already defined within the logic) to the Creation Workflow. -
Uses of CreationWorkflowStepDefinition in net.pricefx.formulaengine.scripting
Modifier and TypeMethodDescriptionPublicGroovyAPI.newCreationWorkflowStep()
Creates the workflow step (theCreationWorkflowStepDefinition
object).