Coverage Report - org.kuali.student.enrollment.class2.acal.form.CalendarSearchForm
 
Classes in this File Line Coverage Branch Coverage Complexity
CalendarSearchForm
0%
0/23
N/A
1
 
 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  
  */
 16  
 package org.kuali.student.enrollment.class2.acal.form;
 17  
 
 18  
 import org.kuali.rice.krad.web.form.UifFormBase;
 19  
 import org.kuali.student.enrollment.acal.dto.AcademicCalendarInfo;
 20  
 import org.kuali.student.enrollment.acal.dto.HolidayCalendarInfo;
 21  
 import org.kuali.student.enrollment.acal.dto.TermInfo;
 22  
 import org.kuali.student.enrollment.class2.acal.dto.AcademicCalendarWrapper;
 23  
 import org.kuali.student.enrollment.class2.acal.dto.AcademicTermWrapper;
 24  
 import org.kuali.student.enrollment.class2.acal.dto.HolidayCalendarWrapper;
 25  
 
 26  
 import java.util.ArrayList;
 27  
 import java.util.List;
 28  
 
 29  
 /**
 30  
  * This class //TODO ...
 31  
  *
 32  
  * @author Kuali Student Team
 33  
  */
 34  
 public class CalendarSearchForm extends UifFormBase {
 35  
     private String calendarType;
 36  
     private String name;
 37  
     private String year;
 38  
     private List<HolidayCalendarInfo> holidayCalendars;
 39  
     private List<AcademicCalendarInfo> academicCalendars;
 40  
     private List<TermInfo> terms;
 41  
 
 42  
     public CalendarSearchForm(){
 43  0
         super();
 44  0
         holidayCalendars =  new ArrayList<HolidayCalendarInfo>();
 45  0
         academicCalendars = new ArrayList<AcademicCalendarInfo>();
 46  0
         terms =  new ArrayList<TermInfo>();
 47  0
     }
 48  
     public String getCalendarType() {
 49  0
         return calendarType;
 50  
     }
 51  
 
 52  
     public void setCalendarType(String calendarType) {
 53  0
         this.calendarType = calendarType;
 54  0
     }
 55  
 
 56  
     public String getName() {
 57  0
         return name;
 58  
     }
 59  
 
 60  
     public void setName(String name) {
 61  0
         this.name = name;
 62  0
     }
 63  
 
 64  
     public String getYear() {
 65  0
         return year;
 66  
     }
 67  
 
 68  
     public void setYear(String year) {
 69  0
         this.year = year;
 70  0
     }
 71  
 
 72  
     public List<HolidayCalendarInfo> getHolidayCalendars() {
 73  0
         return holidayCalendars;
 74  
     }
 75  
 
 76  
     public void setHolidayCalendars(List<HolidayCalendarInfo> holidayCalendars) {
 77  0
         this.holidayCalendars = holidayCalendars;
 78  0
     }
 79  
 
 80  
     public List<AcademicCalendarInfo> getAcademicCalendars() {
 81  0
         return academicCalendars;
 82  
     }
 83  
 
 84  
     public void setAcademicCalendars(List<AcademicCalendarInfo> academicCalendars) {
 85  0
         this.academicCalendars = academicCalendars;
 86  0
     }
 87  
 
 88  
     public List<TermInfo> getTerms() {
 89  0
         return terms;
 90  
     }
 91  
 
 92  
     public void setTerms(List<TermInfo> terms) {
 93  0
         this.terms = terms;
 94  0
     }
 95  
 }