1
2 package org.metricshub.winrm.service.enumeration;
3
4 import java.util.HashMap;
5 import java.util.Map;
6 import javax.xml.namespace.QName;
7 import jakarta.xml.bind.annotation.XmlAccessType;
8 import jakarta.xml.bind.annotation.XmlAccessorType;
9 import jakarta.xml.bind.annotation.XmlAnyAttribute;
10 import jakarta.xml.bind.annotation.XmlElement;
11 import jakarta.xml.bind.annotation.XmlRootElement;
12 import jakarta.xml.bind.annotation.XmlType;
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "", propOrder = {
39 "enumerationContext",
40 "items",
41 "endOfSequence"
42 })
43 @XmlRootElement(name = "PullResponse")
44 public class PullResponse {
45
46 @XmlElement(name = "EnumerationContext")
47 protected EnumerationContextType enumerationContext;
48 @XmlElement(name = "Items")
49 protected ItemListType items;
50 @XmlElement(name = "EndOfSequence")
51 protected Object endOfSequence;
52 @XmlAnyAttribute
53 private Map<QName, String> otherAttributes = new HashMap<>();
54
55
56
57
58
59
60
61
62
63 public EnumerationContextType getEnumerationContext() {
64 return enumerationContext;
65 }
66
67
68
69
70
71
72
73
74
75 public void setEnumerationContext(EnumerationContextType value) {
76 this.enumerationContext = value;
77 }
78
79
80
81
82
83
84
85
86
87 public ItemListType getItems() {
88 return items;
89 }
90
91
92
93
94
95
96
97
98
99 public void setItems(ItemListType value) {
100 this.items = value;
101 }
102
103
104
105
106
107
108
109
110
111 public Object getEndOfSequence() {
112 return endOfSequence;
113 }
114
115
116
117
118
119
120
121
122
123 public void setEndOfSequence(Object value) {
124 this.endOfSequence = value;
125 }
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141 public Map<QName, String> getOtherAttributes() {
142 return otherAttributes;
143 }
144
145 }