Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 2 package org.directwebremoting.webwork; 3 4 10 public class ActionDefinition 11 { 12 15 public String getAction() 16 { 17 return action; 18 } 19 20 23 public void setAction(String action) 24 { 25 this.action = action; 26 } 27 28 31 public boolean isExecuteResult() 32 { 33 return executeResult; 34 } 35 36 39 public void setExecuteResult(boolean executeResult) 40 { 41 this.executeResult = executeResult; 42 } 43 44 47 public String getMethod() 48 { 49 return method; 50 } 51 52 55 public void setMethod(String method) 56 { 57 this.method = method; 58 } 59 60 63 public String getNamespace() 64 { 65 return namespace; 66 } 67 68 71 public void setNamespace(String namespace) 72 { 73 this.namespace = namespace; 74 } 75 76 79 public String toString() 80 { 81 return "[ActionDefinition: namespace=" + namespace + " action=" + action + " method=" + method + " executeResult=" + executeResult + "]"; 82 } 83 84 protected String namespace; 85 86 protected String action; 87 88 protected String method; 89 90 protected boolean executeResult; 91 } 92
| Popular Tags
|