AD0-E103 Exam QuestionsBrowse all questions from this exam

AD0-E103 Exam - Question 49


A developer needs to implement a functionality that requires creating a Custom Workflow Step.

Which two steps should the developer take to start developing the custom behavior? (Choose two.)

Show Answer
Correct Answer: CD

To develop a custom workflow step in Adobe Experience Manager (AEM), a developer should follow two key steps. First, they need to implement a Java class that adheres to the workflow process interface by implementing the interface com.adobe.granite.workflow.exec.WorkflowProcess. This ensures the custom process can be executed within AEM's workflow engine. Second, the developer must create a Workflow component node with the Super Resource Type 'cq/workflow/components/model/process' under the folder /apps//components. This sets up the necessary configuration for the custom workflow step within AEM’s JCR repository, making it recognizable and usable within the workflow models.

Discussion

4 comments
Sign in to comment
AkashDOptions: CD
Jun 28, 2020

Correct answer C & D

griosOptions: CD
Jul 12, 2020

C and D. Custom workfow steps are located under /apps/components.

chunpinOptions: CD
Jan 8, 2021

C and D C: https://helpx.adobe.com/in/experience-manager/6-3/sites/developing/using/workflows-customizing-extending.html%23CreatingCustomWorkflowStepComponents D: https://helpx.adobe.com/in/experience-manager/6-3/sites/developing/using/workflows-customizing-extending.html

mrjavaOptions: CE
May 31, 2023

Actually we need to Create a Workflow component node of the Super Resource Type "cq/workflow/components/step" under the folder /app/workflow/components/model.