Custom Workflow step is not visible in dropdown | Community
Skip to main content
Level 2
March 27, 2024

Custom Workflow step is not visible in dropdown

  • March 27, 2024
  • 1 reply
  • 1246 views

I have created custom workflow process step but  I dont see that custom workflow step in dropdown in workflow model page.

 

my workflow class is as follows

 

@Component(
immediate = true,
service = WorkflowProcess.class,
property = {
"process.label=org: Reduce Image Resolution"
}
)
public class ReduceImageResolutionProcess implements WorkflowProcess {

 

I have similar another workflow step which is visible in dropdown. what could be the problem?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.

1 reply

sravs
Community Advisor
Community Advisor
March 27, 2024

Hi @pawanpatilrocks , check your import statements whether they are from 

com.adobe.granite.workflow

or not. 

Level 2
March 27, 2024

yes they are

 

import com.adobe.granite.workflow.WorkflowException;
import com.adobe.granite.workflow.WorkflowSession;
import com.adobe.granite.workflow.exec.WorkItem;
import com.adobe.granite.workflow.exec.WorkflowProcess;
import com.adobe.granite.workflow.metadata.MetaDataMap;
sravs
Community Advisor
Community Advisor
March 27, 2024

@pawanpatilrocks , can you please share your custom process step code here.