com.microsoft.wsman.shell.CustomRemoteShell Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrock-runtime-windows Show documentation
Show all versions of bedrock-runtime-windows Show documentation
Interfaces, classes and resources to construct, inspect and securely
manage remote runtime processes on Windows using WinRM.
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2020.07.22 at 02:53:45 PM EET
//
package com.microsoft.wsman.shell;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CustomRemoteShell complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomRemoteShell">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="URI" type="{http://www.w3.org/2001/XMLSchema}anyURI" minOccurs="0"/>
* <element name="Shell" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Arguments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomRemoteShell", propOrder = {
"uri",
"shell",
"arguments"
})
public class CustomRemoteShell {
@XmlElement(name = "URI")
@XmlSchemaType(name = "anyURI")
protected String uri;
@XmlElement(name = "Shell", required = true)
protected String shell;
@XmlElement(name = "Arguments")
protected String arguments;
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getURI() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setURI(String value) {
this.uri = value;
}
public boolean isSetURI() {
return (this.uri!= null);
}
/**
* Gets the value of the shell property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getShell() {
return shell;
}
/**
* Sets the value of the shell property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setShell(String value) {
this.shell = value;
}
public boolean isSetShell() {
return (this.shell!= null);
}
/**
* Gets the value of the arguments property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArguments() {
return arguments;
}
/**
* Sets the value of the arguments property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArguments(String value) {
this.arguments = value;
}
public boolean isSetArguments() {
return (this.arguments!= null);
}
}