1 package org.kuali.student.enrollment.lui.service.impl;
2
3 import java.util.List;
4
5 import org.kuali.student.common.dto.ContextInfo;
6 import org.kuali.student.common.dto.StatusInfo;
7 import org.kuali.student.common.dto.TypeInfo;
8 import org.kuali.student.common.dto.TypeTypeRelationInfo;
9 import org.kuali.student.common.dto.ValidationResultInfo;
10 import org.kuali.student.common.exceptions.AlreadyExistsException;
11 import org.kuali.student.common.exceptions.CircularRelationshipException;
12 import org.kuali.student.common.exceptions.DataValidationErrorException;
13 import org.kuali.student.common.exceptions.DependentObjectsExistException;
14 import org.kuali.student.common.exceptions.DoesNotExistException;
15 import org.kuali.student.common.exceptions.InvalidParameterException;
16 import org.kuali.student.common.exceptions.MissingParameterException;
17 import org.kuali.student.common.exceptions.OperationFailedException;
18 import org.kuali.student.common.exceptions.PermissionDeniedException;
19 import org.kuali.student.common.exceptions.VersionMismatchException;
20 import org.kuali.student.datadictionary.dto.DictionaryEntryInfo;
21 import org.kuali.student.enrollment.lui.dto.LuiInfo;
22 import org.kuali.student.enrollment.lui.dto.LuiLuiRelationInfo;
23 import org.kuali.student.enrollment.lui.service.LuiService;
24
25 public class LuiServiceImpl implements LuiService {
26
27 @Override
28 public List<String> getDataDictionaryEntryKeys(ContextInfo context)
29 throws OperationFailedException, MissingParameterException,
30 PermissionDeniedException {
31
32 return null;
33 }
34
35 @Override
36 public DictionaryEntryInfo getDataDictionaryEntry(String entryKey,
37 ContextInfo context) throws OperationFailedException,
38 MissingParameterException, PermissionDeniedException,
39 DoesNotExistException {
40
41 return null;
42 }
43
44 @Override
45 public TypeInfo getType(String typeKey, ContextInfo context)
46 throws DoesNotExistException, InvalidParameterException,
47 MissingParameterException, OperationFailedException {
48
49 return null;
50 }
51
52 @Override
53 public List<TypeInfo> getTypesByRefObjectURI(String refObjectURI,
54 ContextInfo context) throws DoesNotExistException,
55 InvalidParameterException, MissingParameterException,
56 OperationFailedException {
57
58 return null;
59 }
60
61 @Override
62 public List<TypeInfo> getAllowedTypesForType(String ownerTypeKey,
63 String relatedRefObjectURI, ContextInfo context)
64 throws DoesNotExistException, InvalidParameterException,
65 MissingParameterException, OperationFailedException {
66
67 return null;
68 }
69
70 @Override
71 public List<TypeTypeRelationInfo> getTypeRelationsByOwnerType(
72 String ownerTypeKey, String relationTypeKey, ContextInfo context)
73 throws DoesNotExistException, InvalidParameterException,
74 MissingParameterException, OperationFailedException {
75
76 return null;
77 }
78
79 @Override
80 public LuiInfo getLui(String luiId, ContextInfo context)
81 throws DoesNotExistException, InvalidParameterException,
82 MissingParameterException, OperationFailedException {
83
84 return null;
85 }
86
87 @Override
88 public List<LuiInfo> getLuisByIdList(List<String> luiIdList,
89 ContextInfo context) throws DoesNotExistException,
90 InvalidParameterException, MissingParameterException,
91 OperationFailedException {
92
93 return null;
94 }
95
96 @Override
97 public List<LuiInfo> getLuisInAtpByCluId(String cluId, String atpKey,
98 ContextInfo context) throws DoesNotExistException,
99 InvalidParameterException, MissingParameterException,
100 OperationFailedException {
101
102 return null;
103 }
104
105 @Override
106 public List<String> getLuiIdsByCluId(String cluId, ContextInfo context)
107 throws DoesNotExistException, InvalidParameterException,
108 MissingParameterException, OperationFailedException {
109
110 return null;
111 }
112
113 @Override
114 public List<String> getLuiIdsInAtpByCluId(String cluId, String atpKey,
115 ContextInfo context) throws DoesNotExistException,
116 InvalidParameterException, MissingParameterException,
117 OperationFailedException {
118
119 return null;
120 }
121
122 @Override
123 public List<LuiInfo> getLuisByRelation(String relatedLuiId,
124 String luLuRelationTypeKey, ContextInfo context)
125 throws InvalidParameterException, MissingParameterException,
126 OperationFailedException {
127
128 return null;
129 }
130
131 @Override
132 public List<String> getLuiIdsByRelation(String relatedLuiId,
133 String luLuRelationTypeKey, ContextInfo context)
134 throws InvalidParameterException, MissingParameterException,
135 OperationFailedException {
136
137 return null;
138 }
139
140 @Override
141 public List<LuiInfo> getRelatedLuisByLuiId(String luiId,
142 String luLuRelationTypeKey, ContextInfo context)
143 throws InvalidParameterException, MissingParameterException,
144 OperationFailedException {
145
146 return null;
147 }
148
149 @Override
150 public List<String> getRelatedLuiIdsByLuiId(String luiId,
151 String luLuRelationTypeKey, ContextInfo context)
152 throws InvalidParameterException, MissingParameterException,
153 OperationFailedException {
154
155 return null;
156 }
157
158 @Override
159 public LuiLuiRelationInfo getLuiLuiRelation(String luiLuiRelationId,
160 ContextInfo context) throws DoesNotExistException,
161 InvalidParameterException, MissingParameterException,
162 OperationFailedException {
163
164 return null;
165 }
166
167 @Override
168 public List<LuiLuiRelationInfo> getLuiLuiRelationsByLui(String luiId,
169 ContextInfo context) throws DoesNotExistException,
170 InvalidParameterException, MissingParameterException,
171 OperationFailedException {
172
173 return null;
174 }
175
176 @Override
177 public List<ValidationResultInfo> validateLui(String validationType,
178 LuiInfo luiInfo, ContextInfo context) throws DoesNotExistException,
179 InvalidParameterException, MissingParameterException,
180 OperationFailedException {
181
182 return null;
183 }
184
185 @Override
186 public LuiInfo createLui(String cluId, String atpKey, LuiInfo luiInfo,
187 ContextInfo context) throws AlreadyExistsException,
188 DataValidationErrorException, DoesNotExistException,
189 InvalidParameterException, MissingParameterException,
190 OperationFailedException, PermissionDeniedException {
191
192 return null;
193 }
194
195 @Override
196 public LuiInfo updateLui(String luiId, LuiInfo luiInfo, ContextInfo context)
197 throws DataValidationErrorException, DoesNotExistException,
198 InvalidParameterException, MissingParameterException,
199 OperationFailedException, PermissionDeniedException,
200 VersionMismatchException {
201
202 return null;
203 }
204
205 @Override
206 public StatusInfo deleteLui(String luiId, ContextInfo context)
207 throws DependentObjectsExistException, DoesNotExistException,
208 InvalidParameterException, MissingParameterException,
209 OperationFailedException, PermissionDeniedException {
210
211 return null;
212 }
213
214 @Override
215 public LuiInfo updateLuiState(String luiId, String luState,
216 ContextInfo context) throws DataValidationErrorException,
217 DoesNotExistException, InvalidParameterException,
218 MissingParameterException, OperationFailedException,
219 PermissionDeniedException {
220
221 return null;
222 }
223
224 @Override
225 public List<ValidationResultInfo> validateLuiLuiRelation(
226 String validationType, LuiLuiRelationInfo luiLuiRelationInfo,
227 ContextInfo context) throws DoesNotExistException,
228 InvalidParameterException, MissingParameterException,
229 OperationFailedException {
230
231 return null;
232 }
233
234 @Override
235 public LuiLuiRelationInfo createLuiLuiRelation(String luiId,
236 String relatedLuiId, String luLuRelationTypeKey,
237 LuiLuiRelationInfo luiLuiRelationInfo, ContextInfo context)
238 throws AlreadyExistsException, CircularRelationshipException,
239 DataValidationErrorException, DoesNotExistException,
240 InvalidParameterException, MissingParameterException,
241 OperationFailedException, PermissionDeniedException {
242
243 return null;
244 }
245
246 @Override
247 public LuiLuiRelationInfo updateLuiLuiRelation(String luiLuiRelationId,
248 LuiLuiRelationInfo luiLuiRelationInfo, ContextInfo context)
249 throws DataValidationErrorException, DoesNotExistException,
250 InvalidParameterException, MissingParameterException,
251 OperationFailedException, PermissionDeniedException,
252 VersionMismatchException {
253
254 return null;
255 }
256
257 @Override
258 public StatusInfo deleteLuiLuiRelation(String luiLuiRelationId,
259 ContextInfo context) throws DoesNotExistException,
260 InvalidParameterException, MissingParameterException,
261 OperationFailedException, PermissionDeniedException {
262
263 return null;
264 }
265
266 }