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