1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.student.common.util; |
17 |
|
|
18 |
|
import org.kuali.student.common.util.ModPropertyPlaceholderConfigurer.PlaceholderResolvingStringValueResolver; |
19 |
|
import org.springframework.beans.factory.config.BeanDefinitionVisitor; |
20 |
|
import org.springframework.beans.factory.config.TypedStringValue; |
21 |
|
import org.springframework.util.StringValueResolver; |
22 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (19) |
Complexity: 7 |
Complexity Density: 0.64 |
|
23 |
|
public class ModBeanDefinitionVisitor extends BeanDefinitionVisitor { |
24 |
|
|
25 |
|
PlaceholderResolvingStringValueResolver valueResolver; |
26 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
27 |
22
|
public ModBeanDefinitionVisitor(StringValueResolver valueResolver) {... |
28 |
22
|
super(valueResolver); |
29 |
22
|
this.valueResolver=(PlaceholderResolvingStringValueResolver) valueResolver; |
30 |
|
} |
31 |
|
|
32 |
|
|
|
|
| 100% |
Uncovered Elements: 0 (15) |
Complexity: 6 |
Complexity Density: 0.67 |
|
33 |
1588
|
@Override... |
34 |
|
protected Object resolveValue(Object value) { |
35 |
1588
|
value = super.resolveValue(value); |
36 |
1588
|
String strValue = null; |
37 |
|
|
38 |
1588
|
if(value instanceof String){ |
39 |
96
|
strValue=(String)value; |
40 |
1492
|
}else if(value instanceof TypedStringValue){ |
41 |
644
|
strValue=((TypedStringValue)value).getValue(); |
42 |
|
} |
43 |
|
|
44 |
1588
|
if(strValue!=null&&strValue.startsWith("$[") && strValue.endsWith("]")){ |
45 |
57
|
value = valueResolver.resolvePropertyValue(strValue.substring(2, strValue.length()-1)); |
46 |
|
} |
47 |
|
|
48 |
1588
|
return value; |
49 |
|
} |
50 |
|
|
51 |
|
} |