Coverage Report - org.kuali.student.enrollment.lrr.dto.SourceInfo
 
Classes in this File Line Coverage Branch Coverage Complexity
SourceInfo
0%
0/25
N/A
1
 
 1  
 /*
 2  
  * Copyright 2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.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.opensource.org/licenses/ecl1.php
 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.enrollment.lrr.dto;
 17  
 
 18  
 import java.io.Serializable;
 19  
 
 20  
 
 21  
 import javax.xml.bind.annotation.XmlAccessType;
 22  
 import javax.xml.bind.annotation.XmlAccessorType;
 23  
 import javax.xml.bind.annotation.XmlAttribute;
 24  
 import javax.xml.bind.annotation.XmlElement;
 25  
 
 26  
 
 27  
 /**
 28  
  * List of Sources. 
 29  
  *
 30  
  * @Author KSContractMojo
 31  
  * @Author sambit
 32  
  * @Since Wed May 04 15:34:16 PDT 2011
 33  
  * @See <a href="https://wiki.kuali.org/display/KULSTU/sourceInfo+Structure">SourceInfo</a>
 34  
  *
 35  
  */
 36  
 @XmlAccessorType(XmlAccessType.FIELD)
 37  0
 public class SourceInfo implements Serializable {
 38  
 
 39  
     private static final long serialVersionUID = 1L;
 40  
 
 41  
     @XmlElement
 42  
     private String academicRecordId;
 43  
 
 44  
     @XmlElement
 45  
     private String achievedLoId;
 46  
 
 47  
     @XmlElement
 48  
     private String assignedCluResultId;
 49  
 
 50  
     @XmlElement
 51  
     private String desc;
 52  
 
 53  
     @XmlElement
 54  
     private String articulationId;
 55  
 
 56  
     @XmlElement
 57  
     private String resultTransformationId;
 58  
 
 59  
    
 60  
 
 61  
     @XmlAttribute
 62  
     private String type;
 63  
 
 64  
     @XmlAttribute
 65  
     private String id;
 66  
 
 67  
     /**
 68  
      * The page academicRecordId Structure does not exist.
 69  
      */
 70  
     public String getAcademicRecordId() {
 71  0
         return academicRecordId;
 72  
     }
 73  
 
 74  
     public void setAcademicRecordId(String academicRecordId) {
 75  0
         this.academicRecordId = academicRecordId;
 76  0
     }
 77  
 
 78  
     /**
 79  
      * Unique identifier for an achieved learning objective.
 80  
      */
 81  
     public String getAchievedLoId() {
 82  0
         return achievedLoId;
 83  
     }
 84  
 
 85  
     public void setAchievedLoId(String achievedLoId) {
 86  0
         this.achievedLoId = achievedLoId;
 87  0
     }
 88  
 
 89  
     /**
 90  
      * Unique identifier for an assigned canonical learning unit result record.
 91  
      */
 92  
     public String getAssignedCluResultId() {
 93  0
         return assignedCluResultId;
 94  
     }
 95  
 
 96  
     public void setAssignedCluResultId(String assignedCluResultId) {
 97  0
         this.assignedCluResultId = assignedCluResultId;
 98  0
     }
 99  
 
 100  
     /**
 101  
      * Description
 102  
      */
 103  
     public String getDesc() {
 104  0
         return desc;
 105  
     }
 106  
 
 107  
     public void setDesc(String desc) {
 108  0
         this.desc = desc;
 109  0
     }
 110  
 
 111  
     /**
 112  
      * Unique identifier for an articulation record.
 113  
      */
 114  
     public String getArticulationId() {
 115  0
         return articulationId;
 116  
     }
 117  
 
 118  
     public void setArticulationId(String articulationId) {
 119  0
         this.articulationId = articulationId;
 120  0
     }
 121  
 
 122  
     /**
 123  
      * Unique identifier for an learning result transformation.
 124  
      */
 125  
     public String getResultTransformationId() {
 126  0
         return resultTransformationId;
 127  
     }
 128  
 
 129  
     public void setResultTransformationId(String resultTransformationId) {
 130  0
         this.resultTransformationId = resultTransformationId;
 131  0
     }
 132  
 
 133  
    
 134  
 
 135  
     /**
 136  
      * Unique identifier for the type of source for an academic record style record.
 137  
      */
 138  
     public String getType() {
 139  0
         return type;
 140  
     }
 141  
 
 142  
     public void setType(String type) {
 143  0
         this.type = type;
 144  0
     }
 145  
 
 146  
     /**
 147  
      * Unique identifier for an academic record style result source.
 148  
      */
 149  
     public String getId() {
 150  0
         return id;
 151  
     }
 152  
 
 153  
     public void setId(String id) {
 154  0
         this.id = id;
 155  0
     }
 156  
 }