Table of Contents |
---|
...
(3) if package for the workflow code is not already listed in PLFM/trunk/lib/lib-workflow/src/main/resources/META-INF/aop.xml
add it there
(4) write your code, at a minimum you will likely want code similar to the following TODO ADD LINKS AFTER THE MERGE TO TRUNK
- workflow interface:
- activity interface:
- workflow implementation:
- activity implementation:
- workflow runner (runs the decider):
- activity runner (runs the activities):
- workflow initiator (kicks off workflows):
- workflow test (important this will help you ensure that your Promise variables are configured correctly):
How to deploy a workflow
Talk to Nicole and Xa, we will set you up with something similar to Search, Daemons and Monitoring
Common Errors
"java.lang.IllegalStateException",{"cause":null,"message":"not ready","localizedMessage":"not ready"
This happens when you try to access a Promise variable in a context that does not ensure that the value must be "ready". Here is an anti-example:
...