
com.xqbase.util.winrm.shell.Shell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xqbase-util-winrm Show documentation
Show all versions of xqbase-util-winrm Show documentation
Reusable Java components for www.xqbase.com, WinRM Part
The newest version!
package com.xqbase.util.winrm.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;
@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