1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.student.bo; |
17 |
|
|
18 |
|
import java.util.LinkedHashMap; |
19 |
|
|
20 |
|
import org.kuali.rice.kim.bo.impl.KimAttributes; |
21 |
|
import org.kuali.rice.kns.bo.TransientBusinessObjectBase; |
22 |
|
|
23 |
|
|
24 |
|
|
25 |
|
|
26 |
|
|
|
|
| 0% |
Uncovered Elements: 51 (51) |
Complexity: 25 |
Complexity Density: 0.96 |
|
27 |
|
public class KualiStudentKimAttributes extends TransientBusinessObjectBase { |
28 |
|
|
29 |
|
private static final long serialVersionUID = 6969156403877595025L; |
30 |
|
|
31 |
|
public static final String DOCUMENT_TYPE_NAME = KimAttributes.DOCUMENT_TYPE_NAME; |
32 |
|
|
33 |
|
public static final String QUALIFICATION_DEPARTMENT_ID = "departmentId"; |
34 |
|
public static final String QUALIFICATION_DIVISION_ID = "divisionId"; |
35 |
|
public static final String QUALIFICATION_COLLEGE_ID = "collegeId"; |
36 |
|
public static final String QUALIFICATION_ORG_ID = "orgId"; |
37 |
|
|
38 |
|
public static final String QUALIFICATION_DATA_ID = "dataId"; |
39 |
|
public static final String QUALIFICATION_CLU_ID = "cluId"; |
40 |
|
public static final String QUALIFICATION_DTO_NAME = "dtoName"; |
41 |
|
public static final String QUALIFICATION_DTO_FIELD_KEY = "dtoFieldKey"; |
42 |
|
public static final String QUALIFICATION_FIELD_ACCESS_LEVEL = "fieldAccessLevel"; |
43 |
|
public static final String QUALIFICATION_SCREEN_COMPONENT = "screenComponent"; |
44 |
|
public static final String QUALIFICATION_SECTION_ID = "sectionId"; |
45 |
|
public static final String DESCEND_HIERARCHY = "descendHierarchy"; |
46 |
|
public static final String KS_REFERENCE_TYPE_KEY = "ksReferenceTypeKey"; |
47 |
|
|
48 |
|
protected String dataId; |
49 |
|
protected String org; |
50 |
|
protected String department; |
51 |
|
protected String college; |
52 |
|
protected String division; |
53 |
|
|
54 |
|
protected String dtoName; |
55 |
|
protected String dtoFieldKey; |
56 |
|
protected String fieldAccessLevel; |
57 |
|
protected String screenComponent; |
58 |
|
protected String sectionId; |
59 |
|
protected Boolean descendHierarchy; |
60 |
|
protected String ksReferenceTypeKey; |
61 |
|
|
62 |
|
|
63 |
|
@return |
64 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
65 |
0
|
public String getDataId() {... |
66 |
0
|
return dataId; |
67 |
|
} |
68 |
|
|
69 |
|
|
70 |
|
@param |
71 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
72 |
0
|
public void setDataId(String dataId) {... |
73 |
0
|
this.dataId = dataId; |
74 |
|
} |
75 |
|
|
76 |
|
|
77 |
|
@return |
78 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
79 |
0
|
public String getOrg() {... |
80 |
0
|
return org; |
81 |
|
} |
82 |
|
|
83 |
|
|
84 |
|
@param |
85 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
86 |
0
|
public void setOrg(String org) {... |
87 |
0
|
this.org = org; |
88 |
|
} |
89 |
|
|
90 |
|
|
91 |
|
@return |
92 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
93 |
0
|
public String getDepartment() {... |
94 |
0
|
return department; |
95 |
|
} |
96 |
|
|
97 |
|
|
98 |
|
@param |
99 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
100 |
0
|
public void setDepartment(String department) {... |
101 |
0
|
this.department = department; |
102 |
|
} |
103 |
|
|
104 |
|
|
105 |
|
@return |
106 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
107 |
0
|
public String getCollege() {... |
108 |
0
|
return college; |
109 |
|
} |
110 |
|
|
111 |
|
|
112 |
|
@param |
113 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
114 |
0
|
public void setCollege(String college) {... |
115 |
0
|
this.college = college; |
116 |
|
} |
117 |
|
|
118 |
|
|
119 |
|
@return |
120 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
121 |
0
|
public String getDivision() {... |
122 |
0
|
return division; |
123 |
|
} |
124 |
|
|
125 |
|
|
126 |
|
@param |
127 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
128 |
0
|
public void setDivision(String division) {... |
129 |
0
|
this.division = division; |
130 |
|
} |
131 |
|
|
132 |
|
|
133 |
|
@return |
134 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
135 |
0
|
public String getDtoName() {... |
136 |
0
|
return dtoName; |
137 |
|
} |
138 |
|
|
139 |
|
|
140 |
|
@param |
141 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
142 |
0
|
public void setDtoName(String dtoName) {... |
143 |
0
|
this.dtoName = dtoName; |
144 |
|
} |
145 |
|
|
146 |
|
|
147 |
|
@return |
148 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
149 |
0
|
public String getDtoFieldKey() {... |
150 |
0
|
return dtoFieldKey; |
151 |
|
} |
152 |
|
|
153 |
|
|
154 |
|
@param |
155 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
156 |
0
|
public void setDtoFieldKey(String dtoFieldKey) {... |
157 |
0
|
this.dtoFieldKey = dtoFieldKey; |
158 |
|
} |
159 |
|
|
160 |
|
|
161 |
|
@return |
162 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
163 |
0
|
public String getFieldAccessLevel() {... |
164 |
0
|
return fieldAccessLevel; |
165 |
|
} |
166 |
|
|
167 |
|
|
168 |
|
@param |
169 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
170 |
0
|
public void setFieldAccessLevel(String fieldAccessLevel) {... |
171 |
0
|
this.fieldAccessLevel = fieldAccessLevel; |
172 |
|
} |
173 |
|
|
174 |
|
|
175 |
|
@return |
176 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
177 |
0
|
public String getScreenComponent() {... |
178 |
0
|
return screenComponent; |
179 |
|
} |
180 |
|
|
181 |
|
|
182 |
|
@param |
183 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
184 |
0
|
public void setScreenComponent(String screenComponent) {... |
185 |
0
|
this.screenComponent = screenComponent; |
186 |
|
} |
187 |
|
|
188 |
|
|
189 |
|
@return |
190 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
191 |
0
|
public String getSectionId() {... |
192 |
0
|
return sectionId; |
193 |
|
} |
194 |
|
|
195 |
|
|
196 |
|
@param |
197 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
198 |
0
|
public void setSectionId(String sectionId) {... |
199 |
0
|
this.sectionId = sectionId; |
200 |
|
} |
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
@return |
206 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
207 |
0
|
public Boolean isDescendHierarchy() {... |
208 |
0
|
return descendHierarchy; |
209 |
|
} |
210 |
|
|
211 |
|
|
212 |
|
|
213 |
|
|
214 |
|
@param |
215 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
216 |
0
|
public void setDescendHierarchy(Boolean descendHierarchy) {... |
217 |
0
|
this.descendHierarchy = descendHierarchy; |
218 |
|
} |
219 |
|
|
220 |
|
|
221 |
|
@return |
222 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
223 |
0
|
public String getKsReferenceTypeKey() {... |
224 |
0
|
return ksReferenceTypeKey; |
225 |
|
} |
226 |
|
|
227 |
|
|
228 |
|
@param |
229 |
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
230 |
0
|
public void setKsReferenceTypeKey(String ksReferenceTypeKey) {... |
231 |
0
|
this.ksReferenceTypeKey = ksReferenceTypeKey; |
232 |
|
} |
233 |
|
|
|
|
| 0% |
Uncovered Elements: 2 (2) |
Complexity: 1 |
Complexity Density: 0.5 |
|
234 |
0
|
@Override... |
235 |
|
protected LinkedHashMap toStringMapper() { |
236 |
0
|
LinkedHashMap m = new LinkedHashMap(); |
237 |
0
|
return m; |
238 |
|
} |
239 |
|
|
240 |
|
} |