View Javadoc

1   /**
2    * Copyright 2012 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   *
15   * Created by David Yin on 5/10/12
16   */
17  package org.kuali.student.enrollment.class2.courseoffering.service.impl;
18  
19  import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
20  import org.kuali.rice.krad.lookup.LookupableImpl;
21  import org.kuali.rice.krad.web.form.LookupForm;
22  import org.kuali.student.enrollment.courseofferingset.dto.SocRolloverResultItemInfo;
23  import org.kuali.student.enrollment.courseofferingset.service.CourseOfferingSetService;
24  import org.kuali.student.r2.common.util.ContextUtils;
25  import org.kuali.student.r2.common.util.constants.CourseOfferingSetServiceConstants;
26  
27  import javax.xml.namespace.QName;
28  import java.util.List;
29  import java.util.Map;
30  
31  /**
32   * This class provides a Lookupable implementation for SocRolloverResultItems
33   *
34   * @author Kuali Student Team
35   */
36  public class SocRolloverResultItemInfoLookupableImpl extends LookupableImpl {
37      private transient CourseOfferingSetService courseOfferingSetService;
38      private static final long serialVersionUID = 1L;
39      public final static String SOC_ROLLOVER_RESULT_ID = "socRolloverResultId";
40  
41      @Override
42      protected List<?> getSearchResults(LookupForm lookupForm, Map<String, String> fieldValues, boolean unbounded) {
43          List<SocRolloverResultItemInfo> socRolloverResultItemInfos;
44          String resultId = fieldValues.get(SOC_ROLLOVER_RESULT_ID);
45  
46          try {
47              socRolloverResultItemInfos = getCourseOfferingSetService().getSocRolloverResultItemsByResultId(resultId, ContextUtils.createDefaultContextInfo());
48          } catch (Exception e) {
49              throw new RuntimeException("Error getting SocRolloverResultItemsByResultId. ", e);
50          }
51  
52          return socRolloverResultItemInfos;
53      }
54  
55      public CourseOfferingSetService getCourseOfferingSetService() {
56          if (courseOfferingSetService == null) {
57              courseOfferingSetService = (CourseOfferingSetService) GlobalResourceLoader.getService(new QName(CourseOfferingSetServiceConstants.NAMESPACE, CourseOfferingSetServiceConstants.SERVICE_NAME_LOCAL_PART));
58          }
59          return courseOfferingSetService;
60      }
61  }