1 17 package org.apache.servicemix.beanflow; 18 19 20 25 public class BadWorkflow extends Workflow<BadWorkflow.Step> { 27 28 public static enum Step { 29 startStep, fooStep, doesNotExistStep 30 }; 31 32 public BadWorkflow() { 33 super(Step.startStep); 34 } 35 36 public Step startStep() { 39 return Step.fooStep; 40 } 41 42 public Step fooStep() { 43 return Step.doesNotExistStep; 44 } 45 } 46 | Popular Tags |