1
2 package org.oasis_open.docs.wsn.b_2;
3
4 import java.math.BigInteger;
5 import java.util.ArrayList;
6 import java.util.HashMap;
7 import java.util.List;
8 import java.util.Map;
9 import javax.xml.bind.annotation.XmlAccessType;
10 import javax.xml.bind.annotation.XmlAccessorType;
11 import javax.xml.bind.annotation.XmlAnyAttribute;
12 import javax.xml.bind.annotation.XmlAnyElement;
13 import javax.xml.bind.annotation.XmlElement;
14 import javax.xml.bind.annotation.XmlRootElement;
15 import javax.xml.bind.annotation.XmlSchemaType;
16 import javax.xml.bind.annotation.XmlType;
17 import javax.xml.namespace.QName;
18 import org.w3c.dom.Element;
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "", propOrder = {
44 "maximumNumber",
45 "any"
46 })
47 @XmlRootElement(name = "GetMessages")
48 public class GetMessages {
49
50 @XmlElement(name = "MaximumNumber")
51 @XmlSchemaType(name = "nonNegativeInteger")
52 protected BigInteger maximumNumber;
53 @XmlAnyElement(lax = true)
54 protected List<Object> any;
55 @XmlAnyAttribute
56 private Map<QName, String> otherAttributes = new HashMap<QName, String>();
57
58
59
60
61
62
63
64
65
66 public BigInteger getMaximumNumber() {
67 return maximumNumber;
68 }
69
70
71
72
73
74
75
76
77
78 public void setMaximumNumber(BigInteger value) {
79 this.maximumNumber = value;
80 }
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105 public List<Object> getAny() {
106 if (any == null) {
107 any = new ArrayList<Object>();
108 }
109 return this.any;
110 }
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126 public Map<QName, String> getOtherAttributes() {
127 return otherAttributes;
128 }
129
130 }