1 17 package org.apache.servicemix.beanflow; 18 19 25 public enum RunnableSteps implements Runnable { 26 27 START { 28 public void run() { 29 System.out.println("Start"); 30 } 31 }, 32 STEP1 { 33 public void run() { 34 System.out.println("Step 1"); 35 } 36 }, 37 STEP2 { 38 public void run() { 39 System.out.println("Step 2"); 40 } 41 }, 42 STOP { 43 public void run() { 44 System.out.println("Stop!"); 45 } 46 } 47 } 48 | Popular Tags |