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