1 17 package org.apache.servicemix.beanflow; 18 19 20 25 public class SimpleWorkflow extends Workflow<SimpleWorkflow.Step> { 27 28 public static enum Step { 29 stepA, stepB, stepC, stop 30 }; 31 32 public SimpleWorkflow() { 33 super(Step.stepA); 34 } 35 36 public Step stepA() { 39 return Step.stepB; 40 } 41 42 public Step stepB() { 43 return Step.stepC; 44 } 45 46 public Step stepC() { 47 return Step.stop; 48 } 49 } 50 | Popular Tags |