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

io.cloudsoft.winrm4j.client.wsman.Signal 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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Signal complex type. * *

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

 * <complexType name="Signal">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.microsoft.com/wbem/wsman/1/windows/shell}Code"/>
 *       </sequence>
 *       <attribute name="CommandId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Signal", propOrder = { "code" }) public class Signal { @XmlElement(name = "Code", namespace = "http://schemas.microsoft.com/wbem/wsman/1/windows/shell", required = true) protected String code; @XmlAttribute(name = "CommandId") protected String commandId; /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * 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