in my custom class, I am extending
com.adobe.granite.workflow.exec.WorkflowProcess. @component(service =
WorkflowProcess.class, property = {"process.label=My Custom Workflow
Process"}) public class MyCustomWorkflowStep implements WorkflowProcess
{ Inside a Sling Model, I can use @inject annotation
(javax.inject.Inject). But I'm unsure on how to do this inside a
workflow. Or perhaps what's the best way of accessing a configuration
inside a workflow. Thank you.