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