KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > xmlsoap > schemas > ws > _2004 > _08 > addressing > AttributedURI


1 //
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3
3
// See <a HREF="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
4
// Any modifications to this file will be lost upon recompilation of the source schema.
5
// Generated on: 2006.02.24 at 05:55:09 PM PST
6
//
7

8
9 package org.xmlsoap.schemas.ws._2004._08.addressing;
10
11 import java.util.HashMap JavaDoc;
12 import java.util.Map JavaDoc;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlAnyAttribute;
16 import javax.xml.bind.annotation.XmlType;
17 import javax.xml.bind.annotation.XmlValue;
18 import javax.xml.namespace.QName JavaDoc;
19 import org.xmlsoap.schemas.ws._2004._08.addressing.AttributedURI;
20
21
22 /**
23  * <p>Java class for AttributedURI complex type.
24  *
25  * <p>The following schema fragment specifies the expected content contained within this class.
26  *
27  * <pre>
28  * &lt;complexType name="AttributedURI">
29  * &lt;simpleContent>
30  * &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>anyURI">
31  * &lt;/extension>
32  * &lt;/simpleContent>
33  * &lt;/complexType>
34  * </pre>
35  *
36  *
37  */

38 @XmlAccessorType(XmlAccessType.FIELD)
39 @XmlType(name = "AttributedURI", propOrder = {
40     "value"
41 })
42 public class AttributedURI {
43
44     @XmlValue
45     protected String JavaDoc value;
46     @XmlAnyAttribute
47     private Map JavaDoc<QName JavaDoc, String JavaDoc> otherAttributes = new HashMap JavaDoc<QName JavaDoc, String JavaDoc>();
48
49     /**
50      * Gets the value of the value property.
51      *
52      * @return
53      * possible object is
54      * {@link String }
55      *
56      */

57     public String JavaDoc getValue() {
58         return value;
59     }
60
61     /**
62      * Sets the value of the value property.
63      *
64      * @param value
65      * allowed object is
66      * {@link String }
67      *
68      */

69     public void setValue(String JavaDoc value) {
70         this.value = value;
71     }
72
73     /**
74      * Gets a map that contains attributes that aren't bound to any typed property on this class.
75      *
76      * <p>
77      * the map is keyed by the name of the attribute and
78      * the value is the string value of the attribute.
79      *
80      * the map returned by this method is live, and you can add new attribute
81      * by updating the map directly. Because of this design, there's no setter.
82      *
83      *
84      * @return
85      * always non-null
86      */

87     public Map JavaDoc<QName JavaDoc, String JavaDoc> getOtherAttributes() {
88         return otherAttributes;
89     }
90
91 }
92
Popular Tags