All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cloudsoft.winrm4j.client.wsman.CommandResponse Maven / Gradle / Ivy


package io.cloudsoft.winrm4j.client.wsman;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for CommandResponse complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CommandResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.microsoft.com/wbem/wsman/1/windows/shell}CommandId" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CommandResponse", propOrder = { "commandId" }) public class CommandResponse { @XmlElement(name = "CommandId", namespace = "http://schemas.microsoft.com/wbem/wsman/1/windows/shell") protected String commandId; /** * Gets the value of the commandId property. * * @return * possible object is * {@link String } * */ public String getCommandId() { return commandId; } /** * Sets the value of the commandId property. * * @param value * allowed object is * {@link String } * */ public void setCommandId(String value) { this.commandId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy