| 1 |  |  | 
            
  
    | 2 |  |  | 
            
  
    | 3 |  |  | 
            
  
    | 4 |  |  | 
            
  
    | 5 |  |  | 
            
  
    | 6 |  |  | 
            
  
    | 7 |  |  | 
            
  
    | 8 |  |  | 
            
  
    | 9 |  |  | 
            
  
    | 10 |  |  | 
            
  
    | 11 |  |  | 
            
  
    | 12 |  |  | 
            
  
    | 13 |  |  | 
            
  
    | 14 |  |  | 
            
  
    | 15 |  |  | 
            
  
    | 16 |  | package org.kuali.student.lum.course.dto; | 
            
  
    | 17 |  |  | 
            
  
    | 18 |  | import java.io.Serializable; | 
            
  
    | 19 |  | import java.util.ArrayList; | 
            
  
    | 20 |  | import java.util.HashMap; | 
            
  
    | 21 |  | import java.util.List; | 
            
  
    | 22 |  | import java.util.Map; | 
            
  
    | 23 |  |  | 
            
  
    | 24 |  | import javax.xml.bind.annotation.XmlAccessType; | 
            
  
    | 25 |  | import javax.xml.bind.annotation.XmlAccessorType; | 
            
  
    | 26 |  | import javax.xml.bind.annotation.XmlAttribute; | 
            
  
    | 27 |  | import javax.xml.bind.annotation.XmlElement; | 
            
  
    | 28 |  | import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; | 
            
  
    | 29 |  |  | 
            
  
    | 30 |  | import org.kuali.student.core.dto.CurrencyAmountInfo; | 
            
  
    | 31 |  | import org.kuali.student.core.dto.HasAttributes; | 
            
  
    | 32 |  | import org.kuali.student.core.dto.Idable; | 
            
  
    | 33 |  | import org.kuali.student.core.dto.MetaInfo; | 
            
  
    | 34 |  | import org.kuali.student.core.dto.RichTextInfo; | 
            
  
    | 35 |  | import org.kuali.student.core.ws.binding.JaxbAttributeMapListAdapter; | 
            
  
    | 36 |  |  | 
            
  
    | 37 |  |  | 
            
  
    | 38 |  |  | 
            
  
    | 39 |  |  | 
            
  
    | 40 |  |  | 
            
  
    | 41 |  |  | 
            
  
    | 42 |  |  | 
            
  
    | 43 |  |  | 
            
  
    | 44 |  |  | 
            
  
    | 45 |  |  | 
            
  
    | 46 |  | @XmlAccessorType(XmlAccessType.FIELD) | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 36 (36) | Complexity: 16 | Complexity Density: 0.89 |  | 
  
  
    | 47 |  | public class CourseFeeInfo implements Serializable, Idable, HasAttributes { | 
            
  
    | 48 |  |  | 
            
  
    | 49 |  | private static final long serialVersionUID = 1L; | 
            
  
    | 50 |  |  | 
            
  
    | 51 |  | @XmlElement | 
            
  
    | 52 |  | private String feeType; | 
            
  
    | 53 |  |  | 
            
  
    | 54 |  | @XmlElement | 
            
  
    | 55 |  | private String rateType; | 
            
  
    | 56 |  |  | 
            
  
    | 57 |  | @XmlElement | 
            
  
    | 58 |  | private List<CurrencyAmountInfo> feeAmounts; | 
            
  
    | 59 |  |  | 
            
  
    | 60 |  | @XmlElement | 
            
  
    | 61 |  | private RichTextInfo descr; | 
            
  
    | 62 |  |  | 
            
  
    | 63 |  | @XmlElement | 
            
  
    | 64 |  | @XmlJavaTypeAdapter(JaxbAttributeMapListAdapter.class) | 
            
  
    | 65 |  | private Map<String, String> attributes; | 
            
  
    | 66 |  |  | 
            
  
    | 67 |  | @XmlElement | 
            
  
    | 68 |  | private MetaInfo metaInfo; | 
            
  
    | 69 |  |  | 
            
  
    | 70 |  | @XmlAttribute | 
            
  
    | 71 |  | private String id; | 
            
  
    | 72 |  |  | 
            
  
    | 73 |  |  | 
            
  
    | 74 |  |  | 
            
  
    | 75 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 76 | 0 |  public String getFeeType() {... | 
            
  
    | 77 | 0 | return feeType; | 
            
  
    | 78 |  | } | 
            
  
    | 79 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 80 | 0 |  public void setFeeType(String feeType) {... | 
            
  
    | 81 | 0 | this.feeType = feeType; | 
            
  
    | 82 |  | } | 
            
  
    | 83 |  |  | 
            
  
    | 84 |  |  | 
            
  
    | 85 |  |  | 
            
  
    | 86 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 87 | 0 |  public String getRateType() {... | 
            
  
    | 88 | 0 | return rateType; | 
            
  
    | 89 |  | } | 
            
  
    | 90 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 91 | 0 |  public void setRateType(String rateType) {... | 
            
  
    | 92 | 0 | this.rateType = rateType; | 
            
  
    | 93 |  | } | 
            
  
    | 94 |  |  | 
            
  
    | 95 |  |  | 
            
  
    | 96 |  |  | 
            
  
    | 97 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 5 (5) | Complexity: 2 | Complexity Density: 0.67 |  | 
  
  
    | 98 | 0 |  public List<CurrencyAmountInfo> getFeeAmounts() {... | 
            
  
    | 99 | 0 | if (feeAmounts == null) { | 
            
  
    | 100 | 0 | feeAmounts = new ArrayList<CurrencyAmountInfo>(0); | 
            
  
    | 101 |  | } | 
            
  
    | 102 | 0 | return feeAmounts; | 
            
  
    | 103 |  | } | 
            
  
    | 104 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 105 | 0 |  public void setFeeAmounts(List<CurrencyAmountInfo> feeAmounts) {... | 
            
  
    | 106 | 0 | this.feeAmounts = feeAmounts; | 
            
  
    | 107 |  | } | 
            
  
    | 108 |  |  | 
            
  
    | 109 |  |  | 
            
  
    | 110 |  |  | 
            
  
    | 111 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 112 | 0 |  public RichTextInfo getDescr() {... | 
            
  
    | 113 | 0 | return descr; | 
            
  
    | 114 |  | } | 
            
  
    | 115 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 116 | 0 |  public void setDescr(RichTextInfo descr) {... | 
            
  
    | 117 | 0 | this.descr = descr; | 
            
  
    | 118 |  | } | 
            
  
    | 119 |  |  | 
            
  
    | 120 |  |  | 
            
  
    | 121 |  |  | 
            
  
    | 122 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 5 (5) | Complexity: 2 | Complexity Density: 0.67 |  | 
  
  
    | 123 | 0 |  public Map<String, String> getAttributes() {... | 
            
  
    | 124 | 0 | if (attributes == null) { | 
            
  
    | 125 | 0 | attributes = new HashMap<String, String>(); | 
            
  
    | 126 |  | } | 
            
  
    | 127 | 0 | return attributes; | 
            
  
    | 128 |  | } | 
            
  
    | 129 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 130 | 0 |  public void setAttributes(Map<String, String> attributes) {... | 
            
  
    | 131 | 0 | this.attributes = attributes; | 
            
  
    | 132 |  | } | 
            
  
    | 133 |  |  | 
            
  
    | 134 |  |  | 
            
  
    | 135 |  |  | 
            
  
    | 136 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 137 | 0 |  public MetaInfo getMetaInfo() {... | 
            
  
    | 138 | 0 | return metaInfo; | 
            
  
    | 139 |  | } | 
            
  
    | 140 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 141 | 0 |  public void setMetaInfo(MetaInfo metaInfo) {... | 
            
  
    | 142 | 0 | this.metaInfo = metaInfo; | 
            
  
    | 143 |  | } | 
            
  
    | 144 |  |  | 
            
  
    | 145 |  |  | 
            
  
    | 146 |  |  | 
            
  
    | 147 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 148 | 0 |  public String getId() {... | 
            
  
    | 149 | 0 | return id; | 
            
  
    | 150 |  | } | 
            
  
    | 151 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 152 | 0 |  public void setId(String id) {... | 
            
  
    | 153 | 0 | this.id = id; | 
            
  
    | 154 |  | } | 
            
  
    | 155 |  | } |