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