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 | |
|
27 | 0 | 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 | |
|
68 | |
|
69 | |
public String getDataId() { |
70 | 0 | return dataId; |
71 | |
} |
72 | |
|
73 | |
|
74 | |
|
75 | |
|
76 | |
public void setDataId(String dataId) { |
77 | 0 | this.dataId = dataId; |
78 | 0 | } |
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
public String getOrg() { |
84 | 0 | return org; |
85 | |
} |
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | |
public void setOrg(String org) { |
91 | 0 | this.org = org; |
92 | 0 | } |
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public String getDepartment() { |
98 | 0 | return department; |
99 | |
} |
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
public void setDepartment(String department) { |
105 | 0 | this.department = department; |
106 | 0 | } |
107 | |
|
108 | |
|
109 | |
|
110 | |
|
111 | |
public String getCollege() { |
112 | 0 | return college; |
113 | |
} |
114 | |
|
115 | |
|
116 | |
|
117 | |
|
118 | |
public void setCollege(String college) { |
119 | 0 | this.college = college; |
120 | 0 | } |
121 | |
|
122 | |
|
123 | |
|
124 | |
|
125 | |
public String getDivision() { |
126 | 0 | return division; |
127 | |
} |
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | |
public void setDivision(String division) { |
133 | 0 | this.division = division; |
134 | 0 | } |
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
public String getDtoName() { |
140 | 0 | return dtoName; |
141 | |
} |
142 | |
|
143 | |
|
144 | |
|
145 | |
|
146 | |
public void setDtoName(String dtoName) { |
147 | 0 | this.dtoName = dtoName; |
148 | 0 | } |
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
public String getDtoFieldKey() { |
154 | 0 | return dtoFieldKey; |
155 | |
} |
156 | |
|
157 | |
|
158 | |
|
159 | |
|
160 | |
public void setDtoFieldKey(String dtoFieldKey) { |
161 | 0 | this.dtoFieldKey = dtoFieldKey; |
162 | 0 | } |
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
public String getFieldAccessLevel() { |
168 | 0 | return fieldAccessLevel; |
169 | |
} |
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
public void setFieldAccessLevel(String fieldAccessLevel) { |
175 | 0 | this.fieldAccessLevel = fieldAccessLevel; |
176 | 0 | } |
177 | |
|
178 | |
|
179 | |
|
180 | |
|
181 | |
public String getScreenComponent() { |
182 | 0 | return screenComponent; |
183 | |
} |
184 | |
|
185 | |
|
186 | |
|
187 | |
|
188 | |
public void setScreenComponent(String screenComponent) { |
189 | 0 | this.screenComponent = screenComponent; |
190 | 0 | } |
191 | |
|
192 | |
|
193 | |
|
194 | |
|
195 | |
public String getSectionId() { |
196 | 0 | return sectionId; |
197 | |
} |
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
public void setSectionId(String sectionId) { |
203 | 0 | this.sectionId = sectionId; |
204 | 0 | } |
205 | |
|
206 | |
|
207 | |
|
208 | |
|
209 | |
|
210 | |
|
211 | |
public Boolean isDescendHierarchy() { |
212 | 0 | return descendHierarchy; |
213 | |
} |
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | |
|
219 | |
|
220 | |
public void setDescendHierarchy(Boolean descendHierarchy) { |
221 | 0 | this.descendHierarchy = descendHierarchy; |
222 | 0 | } |
223 | |
|
224 | |
|
225 | |
|
226 | |
|
227 | |
public String getKsReferenceTypeKey() { |
228 | 0 | return ksReferenceTypeKey; |
229 | |
} |
230 | |
|
231 | |
|
232 | |
|
233 | |
|
234 | |
public void setKsReferenceTypeKey(String ksReferenceTypeKey) { |
235 | 0 | this.ksReferenceTypeKey = ksReferenceTypeKey; |
236 | 0 | } |
237 | |
|
238 | |
@Override |
239 | |
protected LinkedHashMap toStringMapper() { |
240 | 0 | LinkedHashMap m = new LinkedHashMap(); |
241 | 0 | return m; |
242 | |
} |
243 | |
|
244 | |
} |