Coverage Report - org.kuali.student.enrollment.lpr.infc.LuiPersonRelation
 
Classes in this File Line Coverage Branch Coverage Complexity
LuiPersonRelation
N/A
N/A
1
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 2.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.osedu.org/licenses/ECL-2.0 Unless required by applicable law or
 6  
  * agreed to in writing, software distributed under the License is distributed
 7  
  * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 8  
  * express or implied. See the License for the specific language governing
 9  
  * permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.student.enrollment.lpr.infc;
 12  
 
 13  
 // import com.sun.xml.internal.bind.AnyTypeAdapter;
 14  
 import java.util.List;
 15  
 
 16  
 import org.kuali.student.r2.common.infc.Relationship;
 17  
 
 18  
 /**
 19  
  * Detailed information about a single LUI to Person Relation. This is used to
 20  
  * link together a learning unit instance and a person in such widely defined
 21  
  * domains as a student registering in a course or an instructor being assigned
 22  
  * to advise students in a particular program.
 23  
  * 
 24  
  * @Author KSContractMojo
 25  
  * @Author Kamal
 26  
  * @Since Tue Mar 01 15:53:57 PST 2011
 27  
  * @See <a href=
 28  
  *      "https://wiki.kuali.org/display/KULSTU/luiPersonRelationInfo+Structure"
 29  
  *      >LuiPersonRelationInfo</a>
 30  
  */
 31  
 public interface LuiPersonRelation extends Relationship {
 32  
 
 33  
     /**
 34  
      * Unique identifier for a Learning Unit Instance (LUI).
 35  
      * 
 36  
      * @name LUI Id
 37  
      * @required
 38  
      */
 39  
     public String getLuiId();
 40  
 
 41  
     /**
 42  
      * Unique identifier for a person record.
 43  
      * 
 44  
      * @name Person Id
 45  
      * @required
 46  
      */
 47  
     public String getPersonId();
 48  
 
 49  
     /**
 50  
      * Commitment percentage for the person in the LUI
 51  
      * 
 52  
      * @name Commitment Percent
 53  
      */
 54  
     public Float getCommitmentPercent();
 55  
 
 56  
     /**
 57  
      * The keys of the result values groups to be applied to this LPR
 58  
      * 
 59  
      * For example, setting the grading option to pass/fail or the credits to 3
 60  
      * for this course.
 61  
      * 
 62  
      * @name Result Values Group Keys
 63  
      */
 64  
     public List<String> getResultValuesGroupKeys();
 65  
 }