1 package org.jbpm.websale; 2 3 import org.apache.commons.logging.Log; 4 import org.apache.commons.logging.LogFactory; 5 import org.jbpm.graph.def.ActionHandler; 6 import org.jbpm.graph.exe.ExecutionContext; 7 8 public class UpdateBooks implements ActionHandler { 9 10 String msg; 11 12 private static final long serialVersionUID = 1L; 13 14 public void execute(ExecutionContext executionContext) throws Exception { 15 log.info("###############################################"); 16 log.info("### updating the accounting books"); 17 log.info("###############################################"); 18 19 executionContext.leaveNode(); 20 } 21 22 private static final Log log = LogFactory.getLog(UpdateBooks.class); 23 } 24 | Popular Tags |