1 package org.kuali.student.enrollment.class2.autogen.keyvalue;
2
3 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
4 import org.kuali.rice.core.api.util.ConcreteKeyValue;
5 import org.kuali.rice.core.api.util.KeyValue;
6 import org.kuali.rice.krad.uif.control.UifKeyValuesFinderBase;
7 import org.kuali.rice.krad.uif.view.ViewModel;
8 import org.kuali.student.enrollment.class2.autogen.form.ARGCourseOfferingManagementForm;
9 import org.kuali.student.enrollment.courseoffering.dto.FormatOfferingInfo;
10 import org.kuali.student.enrollment.courseoffering.service.CourseOfferingService;
11 import org.kuali.student.r2.common.util.constants.CourseOfferingServiceConstants;
12
13 import javax.xml.namespace.QName;
14 import java.io.Serializable;
15 import java.util.ArrayList;
16 import java.util.List;
17
18 public class ARGFormatsForCreateRGKeyValues extends UifKeyValuesFinderBase implements Serializable {
19 private transient CourseOfferingService courseOfferingService;
20 private static final long serialVersionUID = 1L;
21
22 @Override
23 public List<KeyValue> getKeyValues(ViewModel model) {
24
25 ARGCourseOfferingManagementForm rgForm = (ARGCourseOfferingManagementForm) model;
26
27 List<KeyValue> keyValues = new ArrayList<KeyValue>();
28
29 if (rgForm.getFoId2aoTypeMap() != null) {
30 for (FormatOfferingInfo formatOfferingInfo : rgForm.getFoId2aoTypeMap().values()) {
31
32 keyValues.add(new ConcreteKeyValue(formatOfferingInfo.getId(), formatOfferingInfo.getName()));
33 }
34 }
35
36 return keyValues;
37 }
38
39 protected CourseOfferingService getCourseOfferingService() {
40 if (courseOfferingService == null) {
41 courseOfferingService = (CourseOfferingService) GlobalResourceLoader.getService(new QName(CourseOfferingServiceConstants.NAMESPACE, "CourseOfferingService"));
42 }
43 return courseOfferingService;
44 }
45 }
46