Coverage Report - org.kuali.student.core.academiccalendar.infc.EnrollmentDateGroupInfc
 
Classes in this File Line Coverage Branch Coverage Complexity
EnrollmentDateGroupInfc
N/A
N/A
1
 
 1  
 /**
 2  
  * Copyright 2010 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.core.academiccalendar.infc;
 17  
 
 18  
 import java.util.Date;
 19  
 
 20  
 
 21  
 /**
 22  
  * A cluster of hardened dates pertinent to an academic term.
 23  
  *
 24  
  * @Author tom
 25  
  * @Since Tue Apr 05 14:22:34 EDT 2011
 26  
  */ 
 27  
 
 28  
 public interface EnrollmentDateGroupInfc {
 29  
 
 30  
     /**
 31  
      * Name: RegistrationStart
 32  
      * Gets the registration start date.
 33  
      *
 34  
      * @return the registration start date
 35  
      */
 36  
     public Date getRegistrationStartDate();
 37  
 
 38  
     /**
 39  
      * Name: RegistrationEnd
 40  
      * Gets the registration end date.
 41  
      *
 42  
      * @return the registration end date
 43  
      */
 44  
     public Date getRegistrationEndDate();
 45  
 
 46  
     /**
 47  
      * Name: ClassStart
 48  
      * Gets the class start date.
 49  
      *
 50  
      * @return the class start date
 51  
      */
 52  
     public Date getClassStartDate();
 53  
 
 54  
     /**
 55  
      * Name: ClassEnd
 56  
      * Gets the class end date.
 57  
      *
 58  
      * @return the class end date
 59  
      */
 60  
     public Date getClassEndDate();
 61  
 
 62  
     /**
 63  
      * Name: AddDate
 64  
      * Gets the add date.
 65  
      *
 66  
      * @return add date
 67  
      */
 68  
     public Date getAddDate();
 69  
 
 70  
     /**
 71  
      * Name: DropDate
 72  
      * Gets the drop date.
 73  
      *
 74  
      * @return drop date
 75  
      */
 76  
     public Date getDropDate();
 77  
 
 78  
     /**
 79  
      * Name: FinalExamStart
 80  
      * Gets the final exam start date.
 81  
      *
 82  
      * @return the final exam start date
 83  
      */
 84  
     public Date getFinalExamStartDate();
 85  
 
 86  
     /**
 87  
      * Name: FinalExamEnd
 88  
      * Gets the final exam end date.
 89  
      *
 90  
      * @return the final exam end date
 91  
      */
 92  
     public Date getFinalExamEndDate();
 93  
 
 94  
     /**
 95  
      * Name: GradingStart
 96  
      * Gets the grading period start date.
 97  
      *
 98  
      * @return the grading start date
 99  
      */
 100  
     public Date getGradingStartDate();
 101  
 
 102  
     /**
 103  
      * Name: GradingEnd
 104  
      * Gets the grading period end date.
 105  
      *
 106  
      * @return the grading end date
 107  
      */
 108  
     public Date getGradingEndDate();
 109  
 
 110  
 }