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