1
2 package org.metricshub.winrm.service.shell;
3
4 import jakarta.xml.bind.annotation.XmlAccessType;
5 import jakarta.xml.bind.annotation.XmlAccessorType;
6 import jakarta.xml.bind.annotation.XmlElement;
7 import jakarta.xml.bind.annotation.XmlType;
8
9
10 /**
11 * <p>Java class for Receive complex type</p>.
12 *
13 * <p>The following schema fragment specifies the expected content contained within this class.</p>
14 *
15 * <pre>{@code
16 * <complexType name="Receive">
17 * <complexContent>
18 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19 * <sequence>
20 * <element name="DesiredStream" type="{http://schemas.microsoft.com/wbem/wsman/1/windows/shell}DesiredStreamType"/>
21 * </sequence>
22 * </restriction>
23 * </complexContent>
24 * </complexType>
25 * }</pre>
26 *
27 *
28 */
29 @XmlAccessorType(XmlAccessType.FIELD)
30 @XmlType(name = "Receive", propOrder = {
31 "desiredStream"
32 })
33 public class Receive {
34
35 @XmlElement(name = "DesiredStream", required = true)
36 protected DesiredStreamType desiredStream;
37
38 /**
39 * Gets the value of the desiredStream property.
40 *
41 * @return
42 * possible object is
43 * {@link DesiredStreamType }
44 *
45 */
46 public DesiredStreamType getDesiredStream() {
47 return desiredStream;
48 }
49
50 /**
51 * Sets the value of the desiredStream property.
52 *
53 * @param value
54 * allowed object is
55 * {@link DesiredStreamType }
56 *
57 */
58 public void setDesiredStream(DesiredStreamType value) {
59 this.desiredStream = value;
60 }
61
62 }