We have a use-case where we need to create a dynamic group and add users dynamically into the group for a user assignment task. The users are variable and determined during runtime. We are using the following APIs to create the group and assign users. https://developer.adobe.com/experience-manager...
This is how I did it in a custom java component: String wfinitiatorId = workItem.getWorkflow().getInitiator();log.info(" Initiator id is: " + wfinitiatorId);
@Anmol_Bhardwaj MetaDataMap vars = wfd.getMetaDataMap();String initiatorId = vars.get("initiatorId", "undefined").trim();log.info(" InitiatorId is: " + initiatorId); We created a custom workflow step in Java. This is the second step in our workflow. The initiatorId is undefined. When is initiato...
Yes, I was hoping to avoid making the bundle myself. I have tried unsuccessfully in the past so, was hoping for a little help. And, yes, we are confirming the correct JDK.
We already have an Oracle database driver for Java 8. Can anybody provide an OSGI bundle for the Java 11's version of Oracles JDBC driver? It would be greatly appreciated. Of course, happy to hear arguments why it's not important to be using Java 11 instead of Java 8.
I have a use case where I need to send 1 or more attachments with an email. The current email component seems to allow for 1 or more attachments but, not dynamically. The attachments are in a payload folder and I don't know how many until runtime. This is an attempt to find the equivalent compone...
Does this already exist somewhere? I'd hate to have to wrap the driver myself - never have been successful. Can somebody point me to a download of an Oracle database driver already wrapped for OSGI? Thanks,Charles