1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.enrollment.class2.courseregistration.service.impl; |
18 | |
|
19 | |
import java.util.Date; |
20 | |
import java.util.LinkedHashMap; |
21 | |
import java.util.List; |
22 | |
import java.util.Map; |
23 | |
|
24 | |
import org.kuali.rice.core.api.criteria.QueryByCriteria; |
25 | |
|
26 | |
import org.kuali.student.enrollment.courseregistration.service.CourseRegistrationService; |
27 | |
import org.kuali.student.enrollment.courseregistration.dto.CourseRegistrationInfo; |
28 | |
import org.kuali.student.enrollment.courseregistration.dto.ActivityRegistrationInfo; |
29 | |
import org.kuali.student.enrollment.courseregistration.dto.RegistrationRequestInfo; |
30 | |
import org.kuali.student.enrollment.courseregistration.dto.RegistrationRequestItemInfo; |
31 | |
import org.kuali.student.enrollment.courseregistration.dto.RegistrationResponseInfo; |
32 | |
import org.kuali.student.enrollment.courseregistration.dto.CreditLoadInfo; |
33 | |
|
34 | |
import org.kuali.student.enrollment.courseoffering.service.CourseOfferingService; |
35 | |
import org.kuali.student.enrollment.courseoffering.dto.RegistrationGroupInfo; |
36 | |
|
37 | |
import org.kuali.student.r2.common.dto.BulkStatusInfo; |
38 | |
import org.kuali.student.r2.common.dto.ContextInfo; |
39 | |
import org.kuali.student.r2.common.dto.MetaInfo; |
40 | |
import org.kuali.student.r2.common.dto.StatusInfo; |
41 | |
import org.kuali.student.r2.common.dto.ValidationResultInfo; |
42 | |
|
43 | |
import org.kuali.student.r2.common.exceptions.AlreadyExistsException; |
44 | |
import org.kuali.student.r2.common.exceptions.DataValidationErrorException; |
45 | |
import org.kuali.student.r2.common.exceptions.DoesNotExistException; |
46 | |
import org.kuali.student.r2.common.exceptions.InvalidParameterException; |
47 | |
import org.kuali.student.r2.common.exceptions.MissingParameterException; |
48 | |
import org.kuali.student.r2.common.exceptions.OperationFailedException; |
49 | |
import org.kuali.student.r2.common.exceptions.PermissionDeniedException; |
50 | |
import org.kuali.student.r2.common.exceptions.ReadOnlyException; |
51 | |
import org.kuali.student.r2.common.exceptions.VersionMismatchException; |
52 | |
|
53 | 0 | public abstract class AbstractCourseRegistrationService |
54 | |
implements CourseRegistrationService { |
55 | |
|
56 | |
|
57 | |
@Override |
58 | |
public CourseRegistrationInfo getCourseRegistration(String courseRegistrationId, ContextInfo contextInfo) |
59 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
60 | |
|
61 | 0 | throw new OperationFailedException("unimplemented"); |
62 | |
} |
63 | |
|
64 | |
@Override |
65 | |
public List<CourseRegistrationInfo> getCourseRegistrationsByIds(List<String> courseRegistrationIds, ContextInfo contextInfo) |
66 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
67 | |
|
68 | 0 | throw new OperationFailedException("unimplemented"); |
69 | |
} |
70 | |
|
71 | |
@Override |
72 | |
public List<String> getCourseRegistrationIdsByType(String courseRegistrationTypeKey,ContextInfo contextInfo) |
73 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
74 | |
|
75 | 0 | throw new OperationFailedException("unimplemented"); |
76 | |
} |
77 | |
|
78 | |
|
79 | |
@Override |
80 | |
public List<CourseRegistrationInfo> getCourseRegistrationsByStudent(String studentId, ContextInfo contextInfo) |
81 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
82 | |
|
83 | 0 | throw new OperationFailedException("unimplemented"); |
84 | |
} |
85 | |
|
86 | |
|
87 | |
@Override |
88 | |
public List<CourseRegistrationInfo> getCourseRegistrationsByCourseOffering(String courseOfferingId, ContextInfo contextInfo) |
89 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
90 | |
|
91 | 0 | throw new OperationFailedException("unimplemented"); |
92 | |
} |
93 | |
|
94 | |
|
95 | |
@Override |
96 | |
public List<CourseRegistrationInfo> getCourseRegistrationsByStudentAndCourseOffering(String studentId, String courseOfferingId, ContextInfo contextInfo) |
97 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
98 | |
|
99 | 0 | throw new OperationFailedException("unimplemented"); |
100 | |
} |
101 | |
|
102 | |
|
103 | |
@Override |
104 | |
public List<CourseRegistrationInfo> getCourseRegistrationsByStudentAndTerm(String studentId, String termId, ContextInfo contextInfo) |
105 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
106 | |
|
107 | 0 | throw new OperationFailedException("unimplemented"); |
108 | |
} |
109 | |
|
110 | |
|
111 | |
@Override |
112 | |
public List<String> searchForCourseRegistrationIds(QueryByCriteria criteria,ContextInfo contextInfo) |
113 | |
throws InvalidParameterException,MissingParameterException, OperationFailedException, PermissionDeniedException { |
114 | |
|
115 | 0 | throw new OperationFailedException("unimplemented"); |
116 | |
} |
117 | |
|
118 | |
|
119 | |
@Override |
120 | |
public List<CourseRegistrationInfo> searchForCourseRegistrations(QueryByCriteria criteria, ContextInfo contextInfo) |
121 | |
throws InvalidParameterException,MissingParameterException, OperationFailedException, PermissionDeniedException { |
122 | |
|
123 | 0 | throw new OperationFailedException("unimplemented"); |
124 | |
} |
125 | |
|
126 | |
@Override |
127 | |
public ActivityRegistrationInfo getActivityRegistration(String activityRegistrationId, ContextInfo contextInfo) |
128 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
129 | |
|
130 | 0 | throw new OperationFailedException("unimplemented"); |
131 | |
} |
132 | |
|
133 | |
@Override |
134 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsByIds(List<String> activityRegistrationIds, ContextInfo contextInfo) |
135 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
136 | |
|
137 | 0 | throw new OperationFailedException("unimplemented"); |
138 | |
} |
139 | |
|
140 | |
@Override |
141 | |
public List<String> getActivityRegistrationIdsByType(String activityRegistrationTypeKey, ContextInfo contextInfo) |
142 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
143 | |
|
144 | 0 | throw new OperationFailedException("unimplemented"); |
145 | |
} |
146 | |
|
147 | |
@Override |
148 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsForCourseRegistration(String courseRegistrationId, ContextInfo contextInfo) |
149 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
150 | |
|
151 | 0 | throw new OperationFailedException("unimplemented"); |
152 | |
} |
153 | |
|
154 | |
@Override |
155 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsByStudent(String studentId, ContextInfo contextInfo) |
156 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
157 | |
|
158 | 0 | throw new OperationFailedException("unimplemented"); |
159 | |
} |
160 | |
|
161 | |
@Override |
162 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsByActivityOffering(String courseOfferingId, ContextInfo contextInfo) |
163 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
164 | |
|
165 | 0 | throw new OperationFailedException("unimplemented"); |
166 | |
} |
167 | |
|
168 | |
@Override |
169 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsByStudentAndActivityOffering(String studentId, String courseOfferingId, ContextInfo contextInfo) |
170 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
171 | |
|
172 | 0 | throw new OperationFailedException("unimplemented"); |
173 | |
} |
174 | |
|
175 | |
@Override |
176 | |
public List<ActivityRegistrationInfo> getActivityRegistrationsByStudentAndTerm(String studentId, String termId, ContextInfo contextInfo) |
177 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
178 | |
|
179 | 0 | throw new OperationFailedException("unimplemented"); |
180 | |
} |
181 | |
|
182 | |
@Override |
183 | |
public List<String> searchForActivityRegistrationIds(QueryByCriteria criteria, ContextInfo contextInfo) |
184 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
185 | |
|
186 | 0 | throw new OperationFailedException("unimplemented"); |
187 | |
} |
188 | |
|
189 | |
|
190 | |
@Override |
191 | |
public List<ActivityRegistrationInfo> searchForActivityRegistrations(QueryByCriteria criteria, ContextInfo contextInfo) |
192 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
193 | |
|
194 | 0 | throw new OperationFailedException("unimplemented"); |
195 | |
} |
196 | |
|
197 | |
@Override |
198 | |
public RegistrationRequestInfo getRegistrationRequest(String registrationRequestId, ContextInfo contextInfo) |
199 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
200 | |
|
201 | 0 | throw new OperationFailedException("unimplemented"); |
202 | |
} |
203 | |
|
204 | |
@Override |
205 | |
public List<RegistrationRequestInfo> getRegistrationRequestsByIds(List<String> registrationRequestIds, ContextInfo contextInfo) |
206 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
207 | |
|
208 | 0 | throw new OperationFailedException("unimplemented"); |
209 | |
} |
210 | |
|
211 | |
@Override |
212 | |
public List<String> getRegistrationRequestIdsByType(String registrationRequestTypeKey, ContextInfo contextInfo) |
213 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
214 | |
|
215 | 0 | throw new OperationFailedException("unimplemented"); |
216 | |
} |
217 | |
|
218 | |
@Override |
219 | |
public List<RegistrationRequestInfo> getRegistrationRequestsByRequestor(String personId, ContextInfo contextInfo) |
220 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
221 | |
|
222 | 0 | throw new OperationFailedException("unimplemented"); |
223 | |
} |
224 | |
|
225 | |
@Override |
226 | |
public List<RegistrationRequestInfo> getUnsubmittedRegistrationRequestsByRequestorAndTerm(String requestorId, String termId, ContextInfo contextInfo) |
227 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
228 | |
|
229 | 0 | throw new OperationFailedException("unimplemented"); |
230 | |
} |
231 | |
|
232 | |
@Override |
233 | |
public List<String> searchForRegistrationRequestIds(QueryByCriteria criteria, ContextInfo contextInfo) |
234 | |
throws InvalidParameterException,MissingParameterException, OperationFailedException, PermissionDeniedException { |
235 | |
|
236 | 0 | throw new OperationFailedException("unimplemented"); |
237 | |
} |
238 | |
|
239 | |
@Override |
240 | |
public List<RegistrationRequestInfo> searchForRegistrationRequests(QueryByCriteria criteria, ContextInfo contextInfo) |
241 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
242 | |
|
243 | 0 | throw new OperationFailedException("unimplemented"); |
244 | |
} |
245 | |
|
246 | |
@Override |
247 | |
public List<ValidationResultInfo> validateRegistrationRequest(String validationTypeKey, String registrationRequestTypeKey, RegistrationRequestInfo registrationRequestInfo, ContextInfo contextInfo) |
248 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
249 | |
|
250 | 0 | throw new OperationFailedException("unimplemented"); |
251 | |
} |
252 | |
|
253 | |
@Override |
254 | |
public RegistrationRequestInfo createRegistrationRequest(String registrationRequestTypeKey, RegistrationRequestInfo registrationRequestInfo, ContextInfo contextInfo) |
255 | |
throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, ReadOnlyException { |
256 | |
|
257 | 0 | throw new OperationFailedException("unimplemented"); |
258 | |
} |
259 | |
|
260 | |
@Override |
261 | |
public RegistrationRequestInfo createRegistrationRequestFromExisting(String registrationRequestId, ContextInfo contextInfo) |
262 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
263 | |
|
264 | 0 | throw new OperationFailedException("unimplemented"); |
265 | |
} |
266 | |
|
267 | |
@Override |
268 | |
public RegistrationRequestInfo updateRegistrationRequest(String registrationRequestId, RegistrationRequestInfo registrationRequestInfo, ContextInfo contextInfo) |
269 | |
throws DataValidationErrorException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException, ReadOnlyException, VersionMismatchException { |
270 | |
|
271 | 0 | throw new OperationFailedException("unimplemented"); |
272 | |
} |
273 | |
|
274 | |
@Override |
275 | |
public StatusInfo deleteRegistrationRequest(String registrationRequestId, ContextInfo contextInfo) |
276 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
277 | |
|
278 | 0 | throw new OperationFailedException("unimplemented"); |
279 | |
} |
280 | |
|
281 | |
@Override |
282 | |
public List<ValidationResultInfo> verifyRegistrationRequestForSubmission(String registrationRequestId, ContextInfo contextInfo) |
283 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
284 | |
|
285 | 0 | throw new OperationFailedException("unimplemented"); |
286 | |
} |
287 | |
|
288 | |
@Override |
289 | |
public RegistrationResponseInfo submitRegistrationRequest(String registrationRequestId, ContextInfo contextInfo) |
290 | |
throws AlreadyExistsException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
291 | |
|
292 | 0 | throw new OperationFailedException("unimplemented"); |
293 | |
} |
294 | |
|
295 | |
@Override |
296 | |
public List<RegistrationRequestItemInfo> getRegistrationRequestItemsForCourseRegistration(String courseRegistrationId, ContextInfo contextInfo) |
297 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
298 | |
|
299 | 0 | throw new OperationFailedException("unimplemented"); |
300 | |
} |
301 | |
|
302 | |
@Override |
303 | |
public List<RegistrationRequestItemInfo> getRegistrationRequestItemsByCourseOfferingAndStudent(String courseOfferingId, String studentId, ContextInfo contextInfo) |
304 | |
throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
305 | |
|
306 | 0 | throw new OperationFailedException("unimplemented"); |
307 | |
} |
308 | |
|
309 | |
@Override |
310 | |
public List<ValidationResultInfo> checkStudentEligibility(String studentId, ContextInfo contextInfo) |
311 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
312 | |
|
313 | 0 | throw new OperationFailedException("unimplemented"); |
314 | |
} |
315 | |
|
316 | |
@Override |
317 | |
public List<ValidationResultInfo> checkStudentEligibilityForTerm(String studentId, String termId, ContextInfo contextInfo) |
318 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
319 | |
|
320 | 0 | throw new OperationFailedException("unimplemented"); |
321 | |
} |
322 | |
|
323 | |
@Override |
324 | |
public List<ValidationResultInfo> checkStudentEligibiltyForCourseOffering(String studentId, String courseOfferingId, ContextInfo contextInfo) |
325 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
326 | |
|
327 | 0 | throw new OperationFailedException("unimplemented"); |
328 | |
} |
329 | |
|
330 | |
@Override |
331 | |
public List<ValidationResultInfo> checkStudentEligibiltyForRegistrationGroup(String studentId, String registrationGroupId, ContextInfo contextInfo) |
332 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
333 | |
|
334 | 0 | throw new OperationFailedException("unimplemented"); |
335 | |
} |
336 | |
|
337 | |
@Override |
338 | |
public List<RegistrationGroupInfo> getEligibleRegistrationGroupsForStudentInCourseOffering(String studentId, String courseOfferingId, ContextInfo contextInfo) |
339 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
340 | |
|
341 | 0 | throw new OperationFailedException("unimplemented"); |
342 | |
|
343 | |
} |
344 | |
|
345 | |
@Override |
346 | |
public List<CreditLoadInfo> calculateCreditLoadForRegistrationRequest(String registrationRequestId, ContextInfo contextInfo) |
347 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
348 | |
|
349 | 0 | throw new OperationFailedException("unimplemented"); |
350 | |
} |
351 | |
} |