1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.student.enrollment.class2.acal.keyvalue; |
18 | |
|
19 | |
import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; |
20 | |
import org.kuali.rice.core.api.util.ConcreteKeyValue; |
21 | |
import org.kuali.rice.core.api.util.KeyValue; |
22 | |
import org.kuali.rice.krad.uif.control.UifKeyValuesFinderBase; |
23 | |
import org.kuali.rice.krad.uif.view.ViewModel; |
24 | |
import org.kuali.student.enrollment.acal.constants.AcademicCalendarServiceConstants; |
25 | |
import org.kuali.student.enrollment.acal.service.AcademicCalendarService; |
26 | |
import org.kuali.student.enrollment.class2.acal.dto.AcalEventWrapper; |
27 | |
import org.kuali.student.enrollment.class2.acal.form.AcademicCalendarForm; |
28 | |
import org.kuali.student.mock.utilities.TestHelper; |
29 | |
import org.kuali.student.r2.common.dto.ContextInfo; |
30 | |
import org.kuali.student.r2.core.type.dto.TypeInfo; |
31 | |
|
32 | |
import javax.xml.namespace.QName; |
33 | |
import java.io.Serializable; |
34 | |
import java.util.ArrayList; |
35 | |
import java.util.List; |
36 | |
|
37 | 0 | public class AcalEventTypeKeyValues extends UifKeyValuesFinderBase implements Serializable { |
38 | |
|
39 | |
private static final long serialVersionUID = 1L; |
40 | |
|
41 | |
private transient AcademicCalendarService acalService; |
42 | |
|
43 | |
public List<KeyValue> getKeyValues(ViewModel model) { |
44 | 0 | List<KeyValue> keyValues = new ArrayList<KeyValue>(); |
45 | 0 | List<String> alreadyAddedTypes = new ArrayList(); |
46 | |
|
47 | 0 | AcademicCalendarForm acalForm = (AcademicCalendarForm)model; |
48 | |
|
49 | 0 | for (AcalEventWrapper eventWrapper : acalForm.getEvents()){ |
50 | 0 | alreadyAddedTypes.add(eventWrapper.getEventTypeKey()); |
51 | |
} |
52 | |
|
53 | |
|
54 | 0 | ConcreteKeyValue topKeyValue = new ConcreteKeyValue(); |
55 | 0 | topKeyValue.setKey(""); |
56 | 0 | topKeyValue.setValue("Select Event Type"); |
57 | 0 | keyValues.add(topKeyValue); |
58 | |
|
59 | |
|
60 | 0 | ContextInfo context = TestHelper.getContext1(); |
61 | |
|
62 | |
try { |
63 | 0 | List<TypeInfo> types = getAcalService().getAcalEventTypes(context); |
64 | 0 | for (TypeInfo type : types) { |
65 | 0 | if (!alreadyAddedTypes.contains(type.getKey())){ |
66 | 0 | ConcreteKeyValue keyValue = new ConcreteKeyValue(); |
67 | 0 | keyValue.setKey(type.getKey()); |
68 | 0 | keyValue.setValue(type.getName()); |
69 | 0 | keyValues.add(keyValue); |
70 | 0 | } |
71 | |
} |
72 | 0 | } catch (Exception e) { |
73 | 0 | throw new RuntimeException(e); |
74 | 0 | } |
75 | |
|
76 | 0 | return keyValues; |
77 | |
} |
78 | |
|
79 | |
public AcademicCalendarService getAcalService() { |
80 | 0 | if(acalService == null) { |
81 | 0 | acalService = (AcademicCalendarService) GlobalResourceLoader.getService(new QName(AcademicCalendarServiceConstants.NAMESPACE, AcademicCalendarServiceConstants.SERVICE_NAME_LOCAL_PART)); |
82 | |
} |
83 | 0 | return this.acalService; |
84 | |
} |
85 | |
} |