io.cloudsoft.winrm4j.client.shell.Shell Maven / Gradle / Ivy
package io.cloudsoft.winrm4j.client.shell;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlList;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.Duration;
import org.w3c.dom.Element;
/**
* Java class for Shell complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Shell">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ShellId" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="Environment" type="{http://schemas.microsoft.com/wbem/wsman/1/windows/shell}EnvironmentVariableList" minOccurs="0"/>
* <element name="WorkingDirectory" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="Lifetime" type="{http://www.w3.org/2001/XMLSchema}duration" minOccurs="0"/>
* <element name="IdleTimeout" type="{http://www.w3.org/2001/XMLSchema}duration" minOccurs="0"/>
* <element name="InputStreams" minOccurs="0">
* <simpleType>
* <list itemType="{http://www.w3.org/2001/XMLSchema}string" />
* </simpleType>
* </element>
* <element name="OutputStreams" minOccurs="0">
* <simpleType>
* <list itemType="{http://www.w3.org/2001/XMLSchema}string" />
* </simpleType>
* </element>
* <any processContents='lax' namespace='##other' maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Shell", propOrder = {
"shellId",
"environment",
"workingDirectory",
"lifetime",
"idleTimeout",
"inputStreams",
"outputStreams",
"any"
})
public class Shell {
@XmlElement(name = "ShellId")
@XmlSchemaType(name = "anyURI")
protected String shellId;
@XmlElement(name = "Environment")
protected EnvironmentVariableList environment;
@XmlElement(name = "WorkingDirectory")
protected String workingDirectory;
@XmlElement(name = "Lifetime")
protected Duration lifetime;
@XmlElement(name = "IdleTimeout")
protected Duration idleTimeout;
@XmlList
@XmlElement(name = "InputStreams")
protected List inputStreams;
@XmlList
@XmlElement(name = "OutputStreams")
protected List outputStreams;
@XmlAnyElement(lax = true)
protected List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy