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