01-12-2012 03:49 PM
public void execute(DelegateExecution execution) throws ExceptionAlso, how would I access the process instance?
{
String name = ???;
String id = ???;
}
01-16-2012 08:03 AM
public void execute(DelegateExecution execution) throws Exception
{
@Override
public void execute(DelegateExecution execution) throws Exception {
ExecutionEntity ee = (ExecutionEntity) execution;
String name = (String) ee.getActivity().getProperties().get("name");
String id = ee.getActivity().getId();
System.out.println(name);
System.out.println(id);
}
01-16-2012 01:51 PM
01-16-2012 06:24 PM
05-23-2014 05:48 AM
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.