Coverage Report - org.kuali.student.enrollment.class2.acal.keyvalue.AcademicTermTypeKeyValues
 
Classes in this File Line Coverage Branch Coverage Complexity
AcademicTermTypeKeyValues
0%
0/25
0%
0/10
4.5
 
 1  
 package org.kuali.student.enrollment.class2.acal.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.acal.constants.AcademicCalendarServiceConstants;
 9  
 import org.kuali.student.enrollment.acal.service.AcademicCalendarService;
 10  
 import org.kuali.student.enrollment.class2.acal.dto.AcademicTermWrapper;
 11  
 import org.kuali.student.enrollment.class2.acal.form.AcademicCalendarForm;
 12  
 import org.kuali.student.r2.common.constants.CommonServiceConstants;
 13  
 import org.kuali.student.r2.common.dto.ContextInfo;
 14  
 import org.kuali.student.r2.core.type.dto.TypeInfo;
 15  
 
 16  
 import javax.xml.namespace.QName;
 17  
 import java.io.Serializable;
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  0
 public class AcademicTermTypeKeyValues extends UifKeyValuesFinderBase implements Serializable {
 22  
 
 23  
     private static final long serialVersionUID = 1L;
 24  
 
 25  
     private transient AcademicCalendarService acalService;
 26  
 
 27  
     @Override
 28  
     public List<KeyValue> getKeyValues(ViewModel model) {
 29  
 
 30  0
         List<KeyValue> keyValues = new ArrayList<KeyValue>();
 31  0
         List<String> availableTermTypes = new ArrayList();
 32  
 
 33  0
         if (model instanceof AcademicCalendarForm){
 34  0
             AcademicCalendarForm acalForm = (AcademicCalendarForm)model;
 35  
 
 36  0
             for (AcademicTermWrapper termWrapper : acalForm.getTermWrapperList()) {
 37  0
                  availableTermTypes.add(termWrapper.getTermType());
 38  
             }
 39  
         }
 40  
 
 41  0
         keyValues.add(new ConcreteKeyValue("", "Select Term Type"));
 42  
 
 43  
         //TODO:Build real context.
 44  0
         ContextInfo context = new ContextInfo();
 45  0
         List<TypeInfo> types = null;
 46  
         try {
 47  
             //FIXME: Should not call services for each collection row. Get all the available types once at the start.. not sure the init method to do that...
 48  0
             types = getAcalService().getTermTypesForAcademicCalendarType(AcademicCalendarServiceConstants.ACADEMIC_CALENDAR_TYPE_KEY,context);
 49  
 
 50  0
             for (TypeInfo type : types) {
 51  0
                 if (!availableTermTypes.contains(type.getKey())){
 52  0
                     ConcreteKeyValue keyValue = new ConcreteKeyValue();
 53  0
                     keyValue.setKey(type.getKey());
 54  0
                     keyValue.setValue(type.getName());
 55  0
                     keyValues.add(keyValue);
 56  0
                 }
 57  
             }
 58  0
         } catch (Exception e) {
 59  0
             throw new RuntimeException(e);
 60  0
         }
 61  
 
 62  0
         return keyValues;
 63  
     }
 64  
 
 65  
     public AcademicCalendarService getAcalService() {
 66  0
         if(acalService == null) {
 67  0
             acalService = (AcademicCalendarService) GlobalResourceLoader.getService(new QName(CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "acal", "AcademicCalendarService"));
 68  
         }
 69  0
         return this.acalService;
 70  
     }
 71  
 
 72  
 }