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.XmlSchemaType;
10  import javax.xml.bind.annotation.XmlType;
11  import javax.xml.bind.annotation.XmlValue;
12  import javax.xml.namespace.QName;
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  @XmlAccessorType(XmlAccessType.FIELD)
33  @XmlType(name = "AttributedURI", propOrder = {
34      "value"
35  })
36  public class AttributedURI {
37  
38      @XmlValue
39      @XmlSchemaType(name = "anyURI")
40      protected String value;
41      @XmlAnyAttribute
42      private Map<QName, String> otherAttributes = new HashMap<QName, String>();
43  
44      
45  
46  
47  
48  
49  
50  
51  
52      public String getValue() {
53          return value;
54      }
55  
56      
57  
58  
59  
60  
61  
62  
63  
64      public void setValue(String value) {
65          this.value = value;
66      }
67  
68      
69  
70  
71  
72  
73  
74  
75  
76  
77  
78  
79  
80  
81  
82      public Map<QName, String> getOtherAttributes() {
83          return otherAttributes;
84      }
85  
86  }