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