1 5 11 package com.opensymphony.workflow.basic; 12 13 import com.opensymphony.workflow.WorkflowContext; 14 15 16 22 public class BasicWorkflowContext implements WorkflowContext { 23 25 private String caller; 26 27 29 public BasicWorkflowContext(String caller) { 30 this.caller = caller; 31 } 32 33 35 public String getCaller() { 36 return caller; 37 } 38 39 public void setRollbackOnly() { 40 } 42 } 43 | Popular Tags |