KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

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