09-19-2011 11:17 AM
Book book = new Book("12345");
execution.setVariable("book", book);
Service 2 changes a property:
Book book = execution.getVariable("book");
book.setTitle("Activiti in Action");
Service 3 prints the content of the process variable:
Book book = execution.getVariable("book");
System.out.println("book=" + book);
Result: book=Book [isbn=12345, title=Activiti in Action]09-19-2011 02:48 PM
09-20-2011 04:37 AM
09-21-2011 04:02 AM
Book book = execution.getVariable("book");
book.setTitle("Activiti in Action");
execution.setVariable("book", book);
09-21-2011 08:57 AM
09-24-2011 04:38 AM
09-24-2011 05:35 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.