I want to learn how to use Apache ODE
and use it in my java aplications. But I can't find a good source to learn from. All the examples on the web that I've found so far are very simple(send a message and get a message). I want to make a simple process where the following happens:
- Process stars with some input
- A java function runs the input through some algorithm and passes the result to the next function
- The next function shows the input to an administrator and he decides whether to approve the process or to discard it. His response is pass to the next function if positive or the whole process is terminated if not.
- The next function does something if the operation was approved.
Is this hard to do? Can you give me links to some projects which use apache ode and require human input?