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 @XmlAccessorType(XmlAccessType.FIELD)
36 @XmlType(name = "", propOrder = {
37 "enumerationContext"
38 })
39 @XmlRootElement(name = "Release")
40 public class Release {
41
42 @XmlElement(name = "EnumerationContext", required = true)
43 protected EnumerationContextType enumerationContext;
44 @XmlAnyAttribute
45 private Map<QName, String> otherAttributes = new HashMap<>();
46
47
48
49
50
51
52
53
54
55 public EnumerationContextType getEnumerationContext() {
56 return enumerationContext;
57 }
58
59
60
61
62
63
64
65
66
67 public void setEnumerationContext(EnumerationContextType value) {
68 this.enumerationContext = value;
69 }
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85 public Map<QName, String> getOtherAttributes() {
86 return otherAttributes;
87 }
88
89 }