1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.component;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.exception.RiceRuntimeException;
20 import org.kuali.rice.krad.datadictionary.Copyable;
21 import org.kuali.rice.krad.datadictionary.parse.BeanTag;
22 import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
23 import org.kuali.rice.krad.uif.util.CopyUtils;
24 import org.springframework.util.MethodInvoker;
25 import org.springframework.util.ReflectionUtils;
26
27 import java.io.Serializable;
28 import java.lang.reflect.Method;
29
30
31
32
33
34
35
36 @BeanTag(name = "methodInvokerConfig-bean", parent = "Uif-MethodInvokerConfig")
37 public class MethodInvokerConfig extends MethodInvoker implements Serializable, Copyable {
38 private static final long serialVersionUID = 6626790175367500081L;
39
40 private String staticMethod;
41 private Class[] argumentTypes;
42
43
44
45
46 @Override
47 public void prepare() throws ClassNotFoundException, NoSuchMethodException {
48 if ((getTargetObject() == null) && (getTargetClass() != null)) {
49 try {
50 setTargetObject(getTargetClass().newInstance());
51 } catch (Exception e) {
52 throw new RiceRuntimeException("Unable to create new intance of target class", e);
53 }
54 }
55
56 super.prepare();
57 }
58
59
60
61
62
63
64
65
66 @BeanTagAttribute(name="staticMethod")
67 public String getStaticMethod() {
68 return staticMethod;
69 }
70
71
72
73
74
75
76
77 @Override
78 public void setStaticMethod(String staticMethod) {
79 super.setStaticMethod(staticMethod);
80 this.staticMethod = staticMethod;
81 }
82
83
84
85
86
87
88
89 @BeanTagAttribute(name="argumentTypes",type= BeanTagAttribute.AttributeType.LISTBEAN)
90 public Class[] getArgumentTypes() {
91 if (argumentTypes == null) {
92 return getMethodArgumentTypes();
93 }
94
95 return argumentTypes;
96 }
97
98
99
100
101
102
103 public void setArgumentTypes(Class[] argumentTypes) {
104 this.argumentTypes = argumentTypes;
105 }
106
107
108
109
110
111
112
113 protected Class[] getMethodArgumentTypes() {
114 if (StringUtils.isNotBlank(staticMethod)) {
115 int lastDotIndex = this.staticMethod.lastIndexOf('.');
116 if (lastDotIndex == -1 || lastDotIndex == this.staticMethod.length()) {
117 throw new IllegalArgumentException("staticMethod must be a fully qualified class plus method name: " +
118 "e.g. 'example.MyExampleClass.myExampleMethod'");
119 }
120 String className = this.staticMethod.substring(0, lastDotIndex);
121 String methodName = this.staticMethod.substring(lastDotIndex + 1);
122 try {
123 setTargetClass(resolveClassName(className));
124 } catch (ClassNotFoundException e) {
125 throw new RuntimeException("Unable to get class for name: " + className);
126 }
127 setTargetMethod(methodName);
128 }
129
130 Method matchingCandidate = findMatchingMethod();
131 if (matchingCandidate != null) {
132 return matchingCandidate.getParameterTypes();
133 }
134
135 Method[] candidates = ReflectionUtils.getAllDeclaredMethods(getTargetClass());
136 for (Method candidate : candidates) {
137 if (candidate.getName().equals(getTargetMethod())) {
138 return candidate.getParameterTypes();
139 }
140 }
141
142 return null;
143 }
144
145
146
147
148 @Override
149 public MethodInvokerConfig clone() throws CloneNotSupportedException {
150 return (MethodInvokerConfig) super.clone();
151 }
152
153
154
155
156
157 public final <T> T copy() {
158 return CopyUtils.copy(this);
159 }
160
161
162
163
164 @Override
165 public Copyable unwrap() {
166 return this;
167 }
168
169
170
171
172
173
174 @Override
175 public void preventModification() {}
176
177 }