
com.sun.xml.ws.commons.virtualbox.IVirtualBoxWaitForPropertyChangeResponse Maven / Gradle / Ivy
package com.sun.xml.ws.commons.virtualbox;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="changed" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="values" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"changed",
"values"
})
@XmlRootElement(name = "IVirtualBox_waitForPropertyChangeResponse")
public class IVirtualBoxWaitForPropertyChangeResponse {
@XmlElement(required = true)
protected String changed;
@XmlElement(required = true)
protected String values;
/**
* Gets the value of the changed property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getChanged() {
return changed;
}
/**
* Sets the value of the changed property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setChanged(String value) {
this.changed = value;
}
/**
* Gets the value of the values property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValues() {
return values;
}
/**
* Sets the value of the values property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValues(String value) {
this.values = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy