|  1 |     | 
     | 
  |  2 |     | 
     | 
  |  3 |     | 
     | 
  |  4 |     | 
     | 
  |  5 |     | 
     | 
  |  6 |     | 
     | 
  |  7 |     | 
     | 
  |  8 |     | 
     | 
  |  9 |     | 
     | 
  |  10 |     | 
     | 
  |  11 |     | 
     | 
  |  12 |     | 
     | 
  |  13 |     | 
     | 
  |  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 |     | 
     | 
  |  31 |     | 
     | 
  |  32 |     | 
     | 
  |  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 |     | 
   }  |