I have created a new workflow using public
class
MyProcess
implements
WorkflowProcess { }
i have overridden
public
void
execute(WorkItem item, WorkflowSession session, MetaDataMap args)
throws
WorkflowException { }
this method and able to get payload when an asset gets uploaded.
However I want to access the workflow launcher configurations(i.e. the folder of DAM assets on which the workflow gets launched) in my java code.
how do i get it , I am not saying about arguments, arguments can be fetched by MetaDataMap args.
can anyone tell me , if possible a couple of lines demonstrating same woul help a lot.
Thanks in advance.