06-01-2011 04:13 AM
06-03-2011 10:50 PM
06-04-2011 02:49 AM
07-11-2011 04:05 AM
Map<String, String> param = new HashMap<String, String>();
param.put("bpm:workflowDescription", "Something");
// etc etc
Reference reference = new Reference(store, null, null);
ActionUtils.executeAction(reference, "start-workflow", param);
07-11-2011 04:26 AM
for (Map.Entry<String, Serializable> entry : paramValues.entrySet()) {
String key = entry.getKey();
QName qname = QName.createQName(entry.getKey(), namespaceService);
if (key.equals("dnetwf:checker")) {
value = personService.getPerson((String)entry.getValue());
workflowParameters.put(qname, value);
}
}
07-11-2011 04:38 AM
One of these custom fields is a person (like the assignee). So I can provide the username as a string parameter from the external application using the ActionUtils.executeAction method.Now I understand that.
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.