Workflow models consist of a series of steps of various types. According to the type, these steps can be configured and extended with parameters and scripts to provide the functionality and control you require.
This section covers the standard Workflow steps.
For module specific steps see also:
Each step component has a Step Properties dialog that lets you define and edit the required properties.
A combination of the following properties are available for most workflow step components, on the Common tab of the properties dialog:
Title
The title for the step.
Description
A description of the step.
Workflow Stage
A drop-down selector to apply a Stage to the step.
Timeout
The period after which the step will be “timed out”.
You can select between: Off, Immediate, 1h, 6h, 12h, 24h.
Timeout Handler
The handler which will control the workflow when the step times out; for example:
Auto Advancer
Handler Advance
Select this option to automatically advance the workflow to the next step after execution. If not selected, the implementation script must handle workflow advancement.
The following properties are available for many workflow step components, on the User/Group tab of the properties dialog:
Notify user via email
User/Group
The AND Split creates a split in the workflow, after which both branches will be active. You add workflow steps to each branch as required. This step enables you to introduce multiple processing paths into the workflow. For example, you can allow certain review steps to occur in parallel, so saving time.
Edit the AND Split properties:
Add workflow steps to the branches as required.
A Container step starts another workflow model that runs as a child workflow.
This Container lets you reuse workflow models to implement common sequences of steps. For example a translation workflow model could be used in multiple editing workflows.
To configure the step, edit and use the following tabs:
Container
The Goto Step allows you to specify the next step in the workflow model to execute, dependent on the result of an ECMAScript:
true
: The Goto Step completes and the workflow engine executes the specified step.
false
: The Goto Step completes and the normal routing logic determines the next step to execute.
The Goto Step enables you to implement advanced routing structures in your workflow models. For example, to implement a loop, the Goto Step can be defined to execute a prior step in the workflow, with the script evaluating a loop condition.
To configure the step, edit and use the following tabs:
Process
Specify either the Script Path or Script. Both options cannot be used at the same time. If you specify values for both properties, the step uses the Script Path.
Simulating a for loop requires that you maintain a count of the number of loop iterations that have occurred:
For example, to implement a workflow that performs an action on several JCR nodes you can use a loop counter as an index for the nodes. To persist the count, store an integer
value in the data map of the workflow instance. Use the script of the Goto Step to increment the count as well as to compare the count to the exit criteria.
function check(){
var count=0;
var keyname="loopcount"
try{
if (workflowData.getMetaDataMap().containsKey(keyname)){
log.info("goto script: found loopcount key");
count= parseInt(workflowData.getMetaDataMap().get(keyname))+1;
}
workflowData.getMetaDataMap().put(keyname,count);
}catch(err) {
log.info(err.message);
return false;
}
if (parseInt(count) <7){
return true;
} else {
return false;
}
}
The OR Split creates a split in the workflow, after which only one branch will be active. This step enables you to introduce conditional processing paths into your workflow. You add workflow steps to each branch as required.
For additional information on creating an OR Split see: https://helpx.adobe.com/experience-manager/using/aem64_workflow_servlet.html
Edit the OR Split properties:
Common
Branch : x>
There is a separate tab for each branch:
Specify either the Script Path or Script. Both options cannot be used at the same time. If you specify values for both properties, the step uses the Script Path.
Add workflow steps to the branches as required.
A Participant Step enables you to assign ownership for a particular action. The workflow will only proceed when the user has manually acknowledged the step. This is used when you want someone to take an action on the workflow; for example, a review step.
Although not directly related, user authorization must be considered when assigning an action; the user must have access to the page that is the workflow payload.
To configure the step, edit and use the following tabs:
The workflow initiator is always notified when:
Some properties need to be configured to enable email notifications. You can also customize the email template or add an email template for a new language. See Configuring Email Notification to configure email notifications in AEM.
Use a Dialog Participant Step to collect information from the user who is assigned the work item. This step is useful for collecting small amounts of data that is used later in the workflow.
Upon completing the step, the Complete Work Item dialog contains the fields that you define in your dialog. The data that is collected in the fields is stored in nodes of the workflow payload. Subsequent workflow steps can then read the value from the repository.
To configure the step, you specify the group or user to assign the work item to, and the path to the dialog.
To configure the step, edit and use the following tabs:
Dialog
To create a dialog:
You can store widget data in the workflow payload or in the work item metadata. The format of the name
property of the widget node determines where the data is stored.
Store Data with the Payload
To store widget data as a property of the workflow payload, use the following format for the value of the name property of the widget node:
./jcr:content/nodename
The data is stored in the nodename
property of the payload node. If the node does not contain that property, the property is created.
When stored with the payload, subsequent uses of the dialog with the same payload overwrites the value of the property.
Store Data with the Work Item
To store widget data as a property of the work item metadata, use the following format for the value of the name property:
nodename
The data is stored in the nodename
property of the work item metadata
. The data is preserved if the dialog subsequently used with the same payload.
Dialog Structure
Dialogs for Dialog Participant Steps are similar to dialogs that you create for authoring components. They are stored under:
/apps/myapp/workflow/dialogs
Dialogs for the standard, touch-enabled UI have the following node structure:
newComponent (cq:Component)
|- cq:dialog (nt:unstructured)
|- content
|- layout
|- items
|- column
|- items
|- component0
|- component1
|- ...
For further information see Creating and Configuring a Dialog.
Dialog Path Property
The Dialog Participant Step has the Dialog Path property (together with the properties of a Participant Step). The value of the Dialog Path property is the path to the dialog
node of your dialog.
For example, the dialog is contained in a component named EmailWatch
that is stored in the node:
/apps/myapp/workflows/dialogs
For the touch-enabled UI the following value is used for the Dialog Path property:
/apps/myapp/workflow/dialogs/EmailWatch/cq:dialog
Example Dialog Definition
The following XML code snippet represents a dialog that stores a String
value in the watchEmail
node of the payload content. The title node represents the TextField component:
jcr:primaryType="nt:unstructured"
jcr:title="Watcher Email Address Dialog"
sling:resourceType="cq/gui/components/authoring/dialog">
<content jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/container">
<layout jcr:primaryType="nt:unstructured"
margin="false"
sling:resourceType="granite/ui/components/foundation/layouts/fixedcolumns"
/>
<items jcr:primaryType="nt:unstructured">
<column jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/foundation/container">
<items jcr:primaryType="nt:unstructured">
<title jcr:primaryType="nt:unstructured"
fieldLabel="Notification Email Address"
name="./jcr:content/watchEmails"
sling:resourceType="granite/ui/components/foundation/form/textfield"
/>
</items>
</column>
</items>
</content>
</cq:dialog>
This example will, in the case of the touch-enabled UI, result in a dialog such as:
The Dynamic Participant Step component is similar to Participant Step with the difference that the participant is selected automatically at run time.
To configure the step, you select a Participant Chooser that identifies the participant to assign the work item to, together with a dialog.
To configure the step, edit and use the following tabs:
Participant Chooser
Dialog
You create the participant chooser. Therefore, you can use any selection logic or criteria. For example, your participant chooser can select the user (within a group) that has the fewest work items. You can create any number of participant choosers to use with different instances of the Dynamic Participant Step component in your workflow models.
Create an OSGi service or an ECMAScript that selects a user to assign the work item to.
ECMAscript
Scripts must include a function named getParticipant that returns a user ID as a String
value. Store your custom scripts in, for example, the /apps/myapp/workflow/scripts
folder, or a subfolder.
A sample script is included in a standard AEM instance:
/libs/workflow/scripts/initiator-participant-chooser.ecma
You must not change anything in the /libs
path.
This is because the content of /libs
is overwritten the next time you upgrade your instance (and may be overwritten when you apply either a hotfix or feature pack).
This script selects the workflow initiator as the participant:
function getParticipant() {
return workItem.getWorkflow().getInitiator();
}
The Workflow Initiator Participant Chooser component extends the Dynamic Participant Step and uses this script as the step implementation.
OSGi service
Services must implement the com.day.cq.workflow.exec.ParticipantStepChooser interface. The interface defines the following members:
SERVICE_PROPERTY_LABEL
field: Use this field to specify the name of the participant chooser. The name appears in a list of available participant choosers in the Dynamic Participant Step properties.getParticipant
method: Returns the dynamically resolved Principal id as a String
value.The getParticipant
method returns the dynamically resolved Principal id. This can be either a group id or user id.
However, a group id can only be used for a Participant Step, when a list of participants is returned. For a Dynamic Participant Step an empty list is returned and this cannot be used for delegation.
To make your implementation available to Dynamic Participant Step components, add your Java class to an OSGi bundle that exports the service, and deploy the bundle to the AEM server.
Random Participant Chooser is a sample service that selects a random user ( com.day.cq.workflow.impl.process.RandomParticipantChooser
). The Random Participant Chooser step component sample extends the Dynamic Participant Step and uses this service as the step implementation.
The following Java class implements the ParticipantStepChooser
interface. The class returns the name of the participant who initiated the workflow. The code uses the same logic that the sample script ( initator-participant-chooser.ecma
) uses.
The @Property
annotation sets the value of the SERVICE_PROPERTY_LABEL
field to Workflow Initiator Participant Chooser
.
package com.adobe.example;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.osgi.framework.Constants;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.adobe.granite.workflow.WorkflowException;
import com.adobe.granite.workflow.WorkflowSession;
import com.adobe.granite.workflow.exec.ParticipantStepChooser;
import com.adobe.granite.workflow.exec.WorkItem;
import com.adobe.granite.workflow.metadata.MetaDataMap;
@Component
@Service
@Properties({
@Property(name = Constants.SERVICE_DESCRIPTION, value = "An example implementation of a dynamic participant chooser."),
@Property(name = ParticipantStepChooser.SERVICE_PROPERTY_LABEL, value = "Workflow Initiator Participant Chooser (service)") })
public class InitiatorParticipantChooser implements ParticipantStepChooser {
private Logger logger = LoggerFactory.getLogger(this.getClass());
public String getParticipant(WorkItem arg0, WorkflowSession arg1,
MetaDataMap arg2) throws WorkflowException {
String initiator = arg0.getWorkflow().getInitiator();
logger.info("Assigning Dynamic Participant Step work item to {}",initiator);
return initiator;
}
}
In the Dynamic Participant Step properties dialog, the Participant Chooser list includes the item Workflow Initiator Participant Chooser (script)
, which represents this service.
``When the workflow model is started, the log indicates the ID of the user who initiated the workflow and who is assigned the work item. In this example, the admin
user started the workflow.
13.09.2015 15:48:53.037 *INFO* [10.176.129.223 [1347565733037] POST /etc/workflow/instances HTTP/1.1] com.adobe.example.InitiatorParticipantChooser Assigning Dynamic Participant Step work item to admin
The Form Participant Step presents a form when the work item is opened. When the user fills and submits the form, the field data is stored in the nodes of the workflow payload.
To configure the step, you specify the group or user to assign the work item to, and the path to the form.
This section deals with the Forms section of Foundation Components for Page Authoring.
To configure the step, edit and use the following tabs:
Form
Create a form for use with a Form Participant Step as normal. However, forms for a Form Participant Step must have the following configurations:
The Start of Form component must have the Action Type property set to Edit Workflow Controlled Resource(s)
.
The Start of Form component must have a value for the Form Identifier
property.
The form components must have the Element Name property set to the path of the node where the field data is stored. The path must locate a node in the workflow payload content. The value uses the following format:
./jcr:content/path_to_node
The form must include a Workflow Submit Button(s) component. You do not configure any properties of the component.
The requirements of your workflow determine where you should store field data. For example, field data can be used to configure the properties of page content. The following value of an Element Name property stores field data as the value of the redirectTarget
property of the jcr:content
node:
./jcr:content/redirectTarget
In the following example, the field data is used as the content of a Text component on the payload page:
./jcr:content/par/text_3/text
``The first example can be used for any page that the cq:Page
component renders. The second example can only be used when the payload page includes a Text component that has an ID of text_3
.
The form can be located anywhere in the repository, however workflow users must be authorized to read the form.
The Random Participant Chooser step is a participant chooser that assigns the generated work item to a user that is randomly selected from a list.
To configure the step, edit and use the following tabs:
Arguments
The Workflow Initiator Participant Chooser step is a participant chooser that assigns the generated work item to the user who started the workflow. There are no properties to configure other than the Common properties.
To configure the step, edit using the following tabs:
A Process Step runs an ECMAScript or calls an OSGi service to perform automatic processing.
To configure the step, edit and use the following tabs:
Process
Process: The process implementation to execute. Use the drop-down menu to select the ECMAScript or OSGi service. For information about:
Handler Advance: Select this option to automatically advance the workflow to the next step after execution. If not selected, the implementation script must handle workflow advancement.
Arguments: Arguments to be passed to the process.