Coverage Report - org.kuali.student.enrollment.acal.form.AcademicCalendarForm
 
Classes in this File Line Coverage Branch Coverage Complexity
AcademicCalendarForm
0%
0/5
N/A
1
 
 1  
 /* Copyright 2011 The Kuali Foundation
 2  
  * 
 3  
  * Licensed under the Educational Community License, Version 1.0 (the
 4  
  * "License"); you may not use this file except in compliance with the License.
 5  
  * You may obtain a copy of the License at
 6  
  * 
 7  
  * http://www.opensource.org/licenses/ecl1.php
 8  
  * 
 9  
  * Unless required by applicable law or agreed to in writing, software
 10  
  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 11  
  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 12  
  * License for the specific language governing permissions and limitations under
 13  
  * the License.
 14  
  */
 15  
 package org.kuali.student.enrollment.acal.form;
 16  
 
 17  
 import org.kuali.rice.kns.web.spring.form.UifFormBase;
 18  
 
 19  
 import org.kuali.student.enrollment.acal.dto.AcademicCalendarInfo;
 20  
 
 21  
 
 22  
 public class AcademicCalendarForm extends UifFormBase {
 23  
     private static final long serialVersionUID = 4898118410378641665L;
 24  
 
 25  
     private AcademicCalendarInfo academicCalendarInfo;
 26  
 
 27  
     public AcademicCalendarForm() {
 28  0
         super();
 29  0
     }
 30  
 
 31  
     public AcademicCalendarInfo getAcademicCalendarInfo() {
 32  0
         return this.academicCalendarInfo;
 33  
     }
 34  
 
 35  
     public void setAcademicCalendarInfo(AcademicCalendarInfo academicCalendarInfo) {
 36  0
         this.academicCalendarInfo = academicCalendarInfo;
 37  0
     }
 38  
 
 39  
 }