1 3 package jodd.madvoc.result; 4 5 import jodd.madvoc.ActionRequest; 6 import jodd.util.StringUtil; 7 8 12 public abstract class ActionResult { 13 14 protected String name; 15 16 19 public ActionResult(String name) { 20 this.name = name; 21 } 22 23 26 public String getName() { 27 return name; 28 } 29 30 31 34 public abstract void execute(ActionRequest request, String resultValue) throws Exception ; 35 36 } 37 | Popular Tags |