| 1 |  |  | 
            
  
    | 2 |  | package org.kuali.student.security.addressing.dto; | 
            
  
    | 3 |  |  | 
            
  
    | 4 |  | import java.util.HashMap; | 
            
  
    | 5 |  | import java.util.Map; | 
            
  
    | 6 |  | import javax.xml.bind.annotation.XmlAccessType; | 
            
  
    | 7 |  | import javax.xml.bind.annotation.XmlAccessorType; | 
            
  
    | 8 |  | import javax.xml.bind.annotation.XmlAnyAttribute; | 
            
  
    | 9 |  | import javax.xml.bind.annotation.XmlAttribute; | 
            
  
    | 10 |  | import javax.xml.bind.annotation.XmlSchemaType; | 
            
  
    | 11 |  | import javax.xml.bind.annotation.XmlType; | 
            
  
    | 12 |  | import javax.xml.bind.annotation.XmlValue; | 
            
  
    | 13 |  | import javax.xml.namespace.QName; | 
            
  
    | 14 |  |  | 
            
  
    | 15 |  |  | 
            
  
    | 16 |  |  | 
            
  
    | 17 |  |  | 
            
  
    | 18 |  |  | 
            
  
    | 19 |  |  | 
            
  
    | 20 |  |  | 
            
  
    | 21 |  |  | 
            
  
    | 22 |  |  | 
            
  
    | 23 |  |  | 
            
  
    | 24 |  |  | 
            
  
    | 25 |  |  | 
            
  
    | 26 |  |  | 
            
  
    | 27 |  |  | 
            
  
    | 28 |  |  | 
            
  
    | 29 |  |  | 
            
  
    | 30 |  |  | 
            
  
    | 31 |  |  | 
            
  
    | 32 |  |  | 
            
  
    | 33 |  |  | 
            
  
    | 34 |  | @XmlAccessorType(XmlAccessType.FIELD) | 
            
  
    | 35 |  | @XmlType(name = "Relationship", propOrder = { | 
            
  
    | 36 |  | "value" | 
            
  
    | 37 |  | }) | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 10 (10) | Complexity: 5 | Complexity Density: 1 |  | 
  
  
    | 38 |  | public class Relationship { | 
            
  
    | 39 |  |  | 
            
  
    | 40 |  | @XmlValue | 
            
  
    | 41 |  | @XmlSchemaType(name = "anyURI") | 
            
  
    | 42 |  | protected String value; | 
            
  
    | 43 |  | @XmlAttribute(name = "RelationshipType") | 
            
  
    | 44 |  | protected QName relationshipType; | 
            
  
    | 45 |  | @XmlAnyAttribute | 
            
  
    | 46 |  | private Map<QName, String> otherAttributes = new HashMap<QName, String>(); | 
            
  
    | 47 |  |  | 
            
  
    | 48 |  |  | 
            
  
    | 49 |  |  | 
            
  
    | 50 |  |  | 
            
  
    | 51 |  | @return | 
            
  
    | 52 |  |  | 
            
  
    | 53 |  | @link | 
            
  
    | 54 |  |  | 
            
  
    | 55 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 56 | 0 |  public String getValue() {... | 
            
  
    | 57 | 0 | return value; | 
            
  
    | 58 |  | } | 
            
  
    | 59 |  |  | 
            
  
    | 60 |  |  | 
            
  
    | 61 |  |  | 
            
  
    | 62 |  |  | 
            
  
    | 63 |  | @param | 
            
  
    | 64 |  |  | 
            
  
    | 65 |  | @link | 
            
  
    | 66 |  |  | 
            
  
    | 67 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 68 | 0 |  public void setValue(String value) {... | 
            
  
    | 69 | 0 | this.value = value; | 
            
  
    | 70 |  | } | 
            
  
    | 71 |  |  | 
            
  
    | 72 |  |  | 
            
  
    | 73 |  |  | 
            
  
    | 74 |  |  | 
            
  
    | 75 |  | @return | 
            
  
    | 76 |  |  | 
            
  
    | 77 |  | @link | 
            
  
    | 78 |  |  | 
            
  
    | 79 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 80 | 0 |  public QName getRelationshipType() {... | 
            
  
    | 81 | 0 | return relationshipType; | 
            
  
    | 82 |  | } | 
            
  
    | 83 |  |  | 
            
  
    | 84 |  |  | 
            
  
    | 85 |  |  | 
            
  
    | 86 |  |  | 
            
  
    | 87 |  | @param | 
            
  
    | 88 |  |  | 
            
  
    | 89 |  | @link | 
            
  
    | 90 |  |  | 
            
  
    | 91 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 92 | 0 |  public void setRelationshipType(QName value) {... | 
            
  
    | 93 | 0 | this.relationshipType = value; | 
            
  
    | 94 |  | } | 
            
  
    | 95 |  |  | 
            
  
    | 96 |  |  | 
            
  
    | 97 |  |  | 
            
  
    | 98 |  |  | 
            
  
    | 99 |  |  | 
            
  
    | 100 |  |  | 
            
  
    | 101 |  |  | 
            
  
    | 102 |  |  | 
            
  
    | 103 |  |  | 
            
  
    | 104 |  |  | 
            
  
    | 105 |  |  | 
            
  
    | 106 |  |  | 
            
  
    | 107 |  | @return | 
            
  
    | 108 |  |  | 
            
  
    | 109 |  |  | 
               
        |  |  | 
           
           |  | 0% | Uncovered Elements: 1 (1) | Complexity: 1 | Complexity Density: 1 |  | 
  
  
    | 110 | 0 |  public Map<QName, String> getOtherAttributes() {... | 
            
  
    | 111 | 0 | return otherAttributes; | 
            
  
    | 112 |  | } | 
            
  
    | 113 |  |  | 
            
  
    | 114 |  | } |