1 16 package org.directwebremoting.extend; 17 18 import java.lang.reflect.Method ; 19 20 28 public class Call 29 { 30 33 public Throwable getException() 34 { 35 return exception; 36 } 37 38 41 public void setException(Throwable exception) 42 { 43 this.exception = exception; 44 } 45 46 49 public Method getMethod() 50 { 51 return method; 52 } 53 54 57 public void setMethod(Method method) 58 { 59 this.method = method; 60 } 61 62 65 public Object [] getParameters() 66 { 67 return parameters; 68 } 69 70 73 public void setParameters(Object [] parameters) 74 { 75 this.parameters = parameters; 76 } 77 78 81 public void setCallId(String callId) 82 { 83 this.callId = callId; 84 } 85 86 89 public String getCallId() 90 { 91 return callId; 92 } 93 94 97 public void setScriptName(String scriptName) 98 { 99 this.scriptName = scriptName; 100 } 101 102 105 public String getScriptName() 106 { 107 return scriptName; 108 } 109 110 113 public void setMethodName(String methodName) 114 { 115 this.methodName = methodName; 116 } 117 118 121 public String getMethodName() 122 { 123 return methodName; 124 } 125 126 private String callId = null; 127 128 private String scriptName = null; 129 130 private String methodName = null; 131 132 private Method method = null; 133 134 private Object [] parameters = null; 135 136 private Throwable exception = null; 137 } 138 | Popular Tags |