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.service.AcademicCalendarService; |
25 | |
import org.kuali.student.enrollment.class2.acal.form.CalendarSearchForm; |
26 | |
import org.kuali.student.enrollment.class2.acal.util.CalendarConstants; |
27 | |
import org.kuali.student.r2.common.constants.CommonServiceConstants; |
28 | |
import org.kuali.student.r2.common.dto.ContextInfo; |
29 | |
import org.kuali.student.r2.core.state.dto.StateInfo; |
30 | |
import org.kuali.student.mock.utilities.TestHelper; |
31 | |
|
32 | |
import javax.xml.namespace.QName; |
33 | |
import java.io.Serializable; |
34 | |
import java.util.ArrayList; |
35 | |
import java.util.List; |
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | 0 | public class AtpStateKeyValues extends UifKeyValuesFinderBase implements Serializable { |
43 | |
|
44 | |
private static final long serialVersionUID = 1L; |
45 | |
|
46 | |
private transient AcademicCalendarService acalService; |
47 | |
|
48 | |
@Override |
49 | |
public List<KeyValue> getKeyValues(ViewModel model) { |
50 | 0 | CalendarSearchForm form = (CalendarSearchForm)model; |
51 | 0 | String atpType = form.getCalendarType(); |
52 | |
|
53 | 0 | List<KeyValue> keyValues = new ArrayList<KeyValue>(); |
54 | |
|
55 | |
|
56 | 0 | ContextInfo context = TestHelper.getContext1(); |
57 | |
|
58 | |
|
59 | |
try { |
60 | 0 | List<StateInfo> states = new ArrayList<StateInfo>(); |
61 | |
|
62 | 0 | if(atpType.equals(CalendarConstants.HOLIDAYCALENDER)){ |
63 | 0 | states = getAcalService().getHolidayCalendarStates(context); |
64 | 0 | }else if(atpType.equals(CalendarConstants.ACADEMICCALENDER)) { |
65 | 0 | states = getAcalService().getAcademicCalendarStates(context); |
66 | 0 | }else if(atpType.equals(CalendarConstants.TERM)){ |
67 | 0 | states = getAcalService().getTermStates(context); |
68 | |
} |
69 | |
|
70 | 0 | for (StateInfo state : states) { |
71 | 0 | ConcreteKeyValue keyValue = new ConcreteKeyValue(); |
72 | 0 | keyValue.setKey(state.getKey()); |
73 | 0 | keyValue.setValue(state.getName()); |
74 | 0 | keyValues.add(keyValue); |
75 | 0 | } |
76 | 0 | } catch (Exception e) { |
77 | 0 | e.printStackTrace(); |
78 | 0 | } |
79 | |
|
80 | 0 | return keyValues; |
81 | |
} |
82 | |
|
83 | |
public AcademicCalendarService getAcalService() { |
84 | 0 | if(acalService == null) { |
85 | 0 | acalService = (AcademicCalendarService) GlobalResourceLoader.getService(new QName(CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "acal", "AcademicCalendarService")); |
86 | |
} |
87 | 0 | return this.acalService; |
88 | |
} |
89 | |
} |