Coverage Report - org.kuali.student.common.infc.Version
 
Classes in this File Line Coverage Branch Coverage Complexity
Version
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may        obtain a copy of the License at
 7  
  *
 8  
  *         http://www.osedu.org/licenses/ECL-2.0
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.common.infc;
 17  
 
 18  
 import java.util.Date;
 19  
 
 20  
 public interface Version {
 21  
 
 22  
     /**
 23  
      * Name: Version Idependent Id
 24  
      *
 25  
      * Version independent Id that remains the same across all versions
 26  
      */
 27  
     public String getVersionIndId();
 28  
     /**
 29  
      * Name: Sequence Number
 30  
      *
 31  
      * The sequence number of the version
 32  
      */
 33  
     public Long getSequenceNumber();
 34  
 
 35  
     /**
 36  
      * Name: Current Version Start Date
 37  
      *
 38  
      * The date and time this version became current.
 39  
      */
 40  
     public Date getCurrentVersionStart();
 41  
 
 42  
     /**
 43  
      * Name: Current Version End Date
 44  
      *
 45  
      * The date and time when this version stopped being current.
 46  
      */
 47  
     public Date getCurrentVersionEnd();
 48  
 
 49  
     /**
 50  
      * Name: Version Comment
 51  
      *
 52  
      * Comments associated with the verison
 53  
      */
 54  
     public String getVersionComment();
 55  
 
 56  
     /**
 57  
      * Name: Versioned From Id
 58  
      *
 59  
      * Versioned From Id
 60  
      *
 61  
      * TODO: Understand and document what is really is
 62  
      */
 63  
     public String getVersionedFromId();
 64  
 }
 65