View Javadoc
1   
2   package org.xmlsoap.schemas.ws._2004._08.addressing;
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   * <p>Java class for AttributedURI complex type.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * 
20   * <pre>
21   * &lt;complexType name="AttributedURI"&gt;
22   *   &lt;simpleContent&gt;
23   *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema&gt;anyURI"&gt;
24   *       &lt;anyAttribute processContents='lax' namespace='##other'/&gt;
25   *     &lt;/extension&gt;
26   *   &lt;/simpleContent&gt;
27   * &lt;/complexType&gt;
28   * </pre>
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       * Gets the value of the value property.
46       * 
47       * @return
48       *     possible object is
49       *     {@link String }
50       *     
51       */
52      public String getValue() {
53          return value;
54      }
55  
56      /**
57       * Sets the value of the value property.
58       * 
59       * @param value
60       *     allowed object is
61       *     {@link String }
62       *     
63       */
64      public void setValue(String value) {
65          this.value = value;
66      }
67  
68      /**
69       * Gets a map that contains attributes that aren't bound to any typed property on this class.
70       * 
71       * <p>
72       * the map is keyed by the name of the attribute and 
73       * the value is the string value of the attribute.
74       * 
75       * the map returned by this method is live, and you can add new attribute
76       * by updating the map directly. Because of this design, there's no setter.
77       * 
78       * 
79       * @return
80       *     always non-null
81       */
82      public Map<QName, String> getOtherAttributes() {
83          return otherAttributes;
84      }
85  
86  }