1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.enrollment.classI.lpr.service.impl; |
17 | |
|
18 | |
|
19 | |
import java.util.ArrayList; |
20 | |
import java.util.List; |
21 | |
|
22 | |
import javax.jws.WebService; |
23 | |
|
24 | |
import org.kuali.student.enrollment.classI.lpr.dao.LprDao; |
25 | |
import org.kuali.student.enrollment.classI.lpr.dao.LprStateDao; |
26 | |
import org.kuali.student.enrollment.classI.lpr.dao.LprTypeDao; |
27 | |
import org.kuali.student.enrollment.classI.lpr.model.LuiPersonRelationEntity; |
28 | |
import org.kuali.student.enrollment.lpr.dto.LuiPersonRelationInfo; |
29 | |
import org.kuali.student.enrollment.lpr.service.LuiPersonRelationService; |
30 | |
import org.kuali.student.r2.common.datadictionary.dto.DictionaryEntryInfo; |
31 | |
import org.kuali.student.r2.common.dto.StatusInfo; |
32 | |
import org.kuali.student.r2.common.dto.TypeInfo; |
33 | |
import org.kuali.student.r2.common.exceptions.AlreadyExistsException; |
34 | |
import org.kuali.student.r2.common.exceptions.DisabledIdentifierException; |
35 | |
import org.kuali.student.r2.common.exceptions.DoesNotExistException; |
36 | |
import org.kuali.student.r2.common.exceptions.InvalidParameterException; |
37 | |
import org.kuali.student.r2.common.exceptions.MissingParameterException; |
38 | |
import org.kuali.student.r2.common.exceptions.OperationFailedException; |
39 | |
import org.kuali.student.r2.common.exceptions.PermissionDeniedException; |
40 | |
import org.kuali.student.r2.common.exceptions.ReadOnlyException; |
41 | |
import org.kuali.student.r2.common.dto.ContextInfo; |
42 | |
import org.kuali.student.r2.common.dto.CriteriaInfo; |
43 | |
import org.kuali.student.r2.common.dto.StateInfo; |
44 | |
import org.kuali.student.r2.common.dto.TypeTypeRelationInfo; |
45 | |
import org.kuali.student.r2.common.dto.ValidationResultInfo; |
46 | |
import org.springframework.transaction.annotation.Transactional; |
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
@WebService(name = "LuiPersonRelationService", serviceName = "LuiPersonRelationService", portName = "LuiPersonRelationService", targetNamespace = "http://student.kuali.org/wsdl/lpr") |
53 | |
@Transactional(readOnly=true,noRollbackFor={DoesNotExistException.class},rollbackFor={Throwable.class}) |
54 | 0 | public class LuiPersonRelationServiceImpl implements LuiPersonRelationService { |
55 | |
|
56 | |
private LprDao lprDao; |
57 | |
private LprStateDao lprStateDao; |
58 | |
private LprTypeDao lprTypeDao; |
59 | |
|
60 | |
|
61 | |
@Override |
62 | |
public List<LuiPersonRelationInfo> findLuiPersonRelationsForLui(String luiId, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
63 | 0 | List<LuiPersonRelationEntity> luiPersonRelations = lprDao.getByLuiId(luiId); |
64 | 0 | List<LuiPersonRelationInfo> dtos = new ArrayList<LuiPersonRelationInfo>(); |
65 | 0 | for (LuiPersonRelationEntity entity : luiPersonRelations) { |
66 | 0 | dtos.add(entity.toDto()); |
67 | |
} |
68 | 0 | return dtos; |
69 | |
} |
70 | |
|
71 | |
@Override |
72 | |
public List<String> createBulkRelationshipsForPerson(String personId, |
73 | |
List<String> luiIdList, String relationState, |
74 | |
String luiPersonRelationType, |
75 | |
LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) |
76 | |
throws AlreadyExistsException, DoesNotExistException, |
77 | |
DisabledIdentifierException, InvalidParameterException, |
78 | |
MissingParameterException, OperationFailedException, |
79 | |
PermissionDeniedException { |
80 | |
|
81 | 0 | List<String> bulkRelationshipValues = new ArrayList<String>(); |
82 | |
|
83 | 0 | bulkRelationshipValues.add(personId); |
84 | |
|
85 | 0 | System.out.println("Inside core impl for createBulkRelationshipsForPerson"); |
86 | |
|
87 | 0 | return bulkRelationshipValues; |
88 | |
|
89 | |
} |
90 | |
|
91 | |
@Override |
92 | |
public LuiPersonRelationInfo fetchLuiPersonRelation(String luiPersonRelationId, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
93 | 0 | LuiPersonRelationEntity lpr = lprDao.find(luiPersonRelationId); |
94 | 0 | return null != lpr ? lpr.toDto() : null; |
95 | |
} |
96 | |
|
97 | |
@Override |
98 | |
public List<LuiPersonRelationInfo> findLuiPersonRelationsByIdList(List<String> luiPersonRelationIdList, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
99 | |
|
100 | 0 | return null; |
101 | |
} |
102 | |
|
103 | |
@Override |
104 | |
public List<String> findLuiIdsRelatedToPerson(String personId, String luiPersonRelationType, String relationState, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
105 | |
|
106 | 0 | return null; |
107 | |
} |
108 | |
|
109 | |
@Override |
110 | |
public List<String> findPersonIdsRelatedToLui(String luiId, String luiPersonRelationType, String relationState, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
111 | |
|
112 | 0 | return null; |
113 | |
} |
114 | |
|
115 | |
@Override |
116 | |
public List<LuiPersonRelationInfo> findLuiPersonRelations(String personId, String luiId, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
117 | |
|
118 | 0 | return null; |
119 | |
} |
120 | |
|
121 | |
@Override |
122 | |
public List<String> findLuiPersonRelationIds(String personId, String luiId, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
123 | |
|
124 | 0 | return null; |
125 | |
} |
126 | |
|
127 | |
@Override |
128 | |
public List<LuiPersonRelationInfo> findLuiPersonRelationsForPerson(String personId, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
129 | |
|
130 | 0 | return null; |
131 | |
} |
132 | |
|
133 | |
@Override |
134 | |
public List<String> findLuiPersonRelationIdsForPerson(String personId, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
135 | |
|
136 | 0 | return null; |
137 | |
} |
138 | |
|
139 | |
@Override |
140 | |
public List<String> findLuiPersonRelationIdsForLui(String luiId, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
141 | |
|
142 | 0 | return null; |
143 | |
} |
144 | |
|
145 | |
@Override |
146 | |
public List<ValidationResultInfo> validateLuiPersonRelation(String validationType, LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) |
147 | |
throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
148 | |
|
149 | 0 | return null; |
150 | |
} |
151 | |
|
152 | |
@Override |
153 | |
public List<String> findAllValidLuisForPerson(String personId, String luiPersonRelationType, String relationState, String atpId, ContextInfo context) throws DoesNotExistException, DisabledIdentifierException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
154 | |
|
155 | 0 | return null; |
156 | |
} |
157 | |
|
158 | |
@Override |
159 | |
public List<String> searchForLuiPersonRelationIds(CriteriaInfo criteria, ContextInfo context) throws InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
160 | |
|
161 | 0 | return null; |
162 | |
} |
163 | |
|
164 | |
@Override |
165 | |
@Transactional |
166 | |
public String createLuiPersonRelation(String personId, String luiId, String luiPersonRelationType, LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) throws AlreadyExistsException, DoesNotExistException, DisabledIdentifierException, ReadOnlyException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
167 | 0 | LuiPersonRelationEntity lpr = toCluForCreate(luiPersonRelationInfo); |
168 | 0 | lprDao.persist(lpr); |
169 | 0 | return lpr.getId(); |
170 | |
} |
171 | |
|
172 | |
private LuiPersonRelationEntity toCluForCreate(LuiPersonRelationInfo luiPersonRelationInfo) { |
173 | 0 | LuiPersonRelationEntity lpr = new LuiPersonRelationEntity(luiPersonRelationInfo); |
174 | 0 | if (null != luiPersonRelationInfo.getStateKey()) { |
175 | 0 | lpr.setPersonRelationState(lprStateDao.find(luiPersonRelationInfo.getStateKey())); |
176 | |
} |
177 | 0 | if (null != luiPersonRelationInfo.getTypeKey()) { |
178 | 0 | lpr.setPersonRelationType(lprTypeDao.find(luiPersonRelationInfo.getTypeKey())); |
179 | |
} |
180 | |
|
181 | 0 | return lpr; |
182 | |
} |
183 | |
|
184 | |
@Override |
185 | |
public List<String> createBulkRelationshipsForLui(String luiId, List<String> personIdList, String relationState, String luiPersonRelationType, LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) throws AlreadyExistsException, DoesNotExistException, DisabledIdentifierException, ReadOnlyException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
186 | |
|
187 | 0 | return null; |
188 | |
} |
189 | |
|
190 | |
@Override |
191 | |
public LuiPersonRelationInfo updateLuiPersonRelation(String luiPersonRelationId, LuiPersonRelationInfo luiPersonRelationInfo, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, ReadOnlyException, OperationFailedException, PermissionDeniedException { |
192 | |
|
193 | 0 | return null; |
194 | |
} |
195 | |
|
196 | |
@Override |
197 | |
public StatusInfo deleteLuiPersonRelation(String luiPersonRelationId, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException, PermissionDeniedException { |
198 | |
|
199 | 0 | return null; |
200 | |
} |
201 | |
|
202 | |
@Override |
203 | |
public DictionaryEntryInfo getDataDictionaryEntry(String entryKey, ContextInfo context) throws OperationFailedException, MissingParameterException, PermissionDeniedException, DoesNotExistException { |
204 | |
|
205 | 0 | return null; |
206 | |
} |
207 | |
|
208 | |
@Override |
209 | |
public List<String> getDataDictionaryEntryKeys(ContextInfo context) throws OperationFailedException, MissingParameterException, PermissionDeniedException { |
210 | |
|
211 | 0 | return null; |
212 | |
} |
213 | |
|
214 | |
@Override |
215 | |
public TypeInfo getType(String typeKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
216 | |
|
217 | 0 | return null; |
218 | |
} |
219 | |
|
220 | |
@Override |
221 | |
public List<TypeInfo> getTypesByRefObjectURI(String refObjectURI, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
222 | |
|
223 | 0 | return null; |
224 | |
} |
225 | |
|
226 | |
@Override |
227 | |
public List<TypeInfo> getAllowedTypesForType(String ownerTypeKey, String relatedRefObjectURI, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
228 | |
|
229 | 0 | return null; |
230 | |
} |
231 | |
|
232 | |
@Override |
233 | |
public List<TypeTypeRelationInfo> getTypeRelationsByOwnerType(String ownerTypeKey, String relationTypeKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
234 | |
|
235 | 0 | return null; |
236 | |
} |
237 | |
|
238 | |
public void setLprDao(LprDao lprDao) { |
239 | 0 | this.lprDao = lprDao; |
240 | 0 | } |
241 | |
|
242 | |
public void setLprStateDao(LprStateDao lprStateDao) { |
243 | 0 | this.lprStateDao = lprStateDao; |
244 | 0 | } |
245 | |
|
246 | |
public void setLprTypeDao(LprTypeDao lprTypeDao) { |
247 | 0 | this.lprTypeDao = lprTypeDao; |
248 | 0 | } |
249 | |
|
250 | |
@Override |
251 | |
public List<String> getProcessKeys(String typeKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
252 | |
|
253 | 0 | return null; |
254 | |
} |
255 | |
|
256 | |
@Override |
257 | |
public StateInfo getState(String processKey, String stateKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
258 | 0 | return null; |
259 | |
} |
260 | |
|
261 | |
@Override |
262 | |
public List<StateInfo> getStatesByProcess(String processKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
263 | |
|
264 | 0 | return null; |
265 | |
} |
266 | |
|
267 | |
@Override |
268 | |
public List<StateInfo> getInitialValidStates(String processKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
269 | |
|
270 | 0 | return null; |
271 | |
} |
272 | |
|
273 | |
@Override |
274 | |
public StateInfo getNextHappyState(String processKey, String currentStateKey, ContextInfo context) throws DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException { |
275 | |
|
276 | 0 | return null; |
277 | |
} |
278 | |
} |