1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.r1.common.validator;
17
18 import org.apache.log4j.Logger;
19 import org.kuali.student.r2.common.dto.AttributeInfo;
20
21 import java.beans.BeanInfo;
22 import java.beans.IntrospectionException;
23 import java.beans.Introspector;
24 import java.beans.PropertyDescriptor;
25 import java.util.HashMap;
26 import java.util.List;
27 import java.util.Map;
28
29 public class BeanConstraintDataProvider implements ConstraintDataProvider {
30 final static Logger LOG = Logger.getLogger(BeanConstraintDataProvider.class);
31
32 private static final String DYNAMIC_ATTRIBUTE = "attributes";
33 private static final String PARENT = "parent";
34
35 Map<String, Object> dataMap = null;
36
37
38
39
40
41 public BeanConstraintDataProvider() {
42
43 }
44
45
46 public String getPath(){
47 return "";
48 }
49
50 @SuppressWarnings("unchecked")
51 @Override
52 public void initialize(Object o) {
53
54 dataMap = new HashMap<String, Object>();
55
56 try {
57 BeanInfo beanInfo = Introspector.getBeanInfo(o.getClass());
58
59 for (PropertyDescriptor pd : beanInfo.getPropertyDescriptors()) {
60 Object value = null;
61 try {
62 value = pd.getReadMethod().invoke(o);
63 } catch (Exception e) {
64 LOG.warn("Method invokation failed",e);
65 }
66
67
68 if(DYNAMIC_ATTRIBUTE.equals(pd.getName())) {
69 if (o.getClass().getPackage().getName().contains(".r1.")){
70 dataMap.putAll((Map<String, String>)value);
71 }
72
73 if (o.getClass().getPackage().getName().contains(".r2."))
74 {
75
76 List<AttributeInfo> attToMap = (List<AttributeInfo>)value;
77 HashMap<String,String > getAllKEysOnR2 = new HashMap<String, String>();
78 if (attToMap != null){
79 for ( AttributeInfo atin : attToMap ){
80
81 getAllKEysOnR2.put(atin.getKey(),atin.getValue());
82 }
83 dataMap.putAll(getAllKEysOnR2);
84 }
85 }
86
87 } else {
88 dataMap.put(pd.getName(), value);
89 }
90 }
91 } catch (IntrospectionException e) {
92 throw new RuntimeException(e);
93 }
94 }
95
96 @Override
97 public String getObjectId() {
98 return (dataMap.containsKey("id") && null != dataMap.get("id")) ? dataMap.get("id").toString() : null;
99 }
100
101 @Override
102 public Object getValue(String fieldKey) {
103 return dataMap.get(fieldKey);
104 }
105
106 @Override
107 public Boolean hasField(String fieldKey) {
108 return dataMap.containsKey(fieldKey);
109 }
110
111 @Override
112 public void setParent(ConstraintDataProvider parentDataProvider) {
113 if (dataMap == null){
114 return;
115 }
116
117 dataMap.put(PARENT, parentDataProvider);
118 }
119
120 @Override
121 public ConstraintDataProvider getParent() {
122 if (dataMap == null){
123 return null;
124 }
125 return (ConstraintDataProvider) dataMap.get(PARENT);
126 }
127
128 }