com.glookast.api.capture_info.ResponseUUID Maven / Gradle / Ivy
package com.glookast.api.capture_info;
import java.io.Serializable;
import java.util.UUID;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import com.glookast.commons.xml.XmlAdapterUUID;
/**
* Java class for ResponseUUID complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResponseUUID">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="return" type="{http://base.commons.glookast.com}UUID"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResponseUUID", propOrder = {
"_return"
})
public class ResponseUUID implements Serializable
{
@XmlElement(name = "return", required = true, type = String.class)
@XmlJavaTypeAdapter(XmlAdapterUUID.class)
protected UUID _return;
/**
* Default no-arg constructor
*
*/
public ResponseUUID() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public ResponseUUID(final UUID _return) {
this._return = _return;
}
/**
* Gets the value of the return property.
*
* @return
* possible object is
* {@link String }
*
*/
public UUID getReturn() {
return _return;
}
/**
* Sets the value of the return property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setReturn(UUID value) {
this._return = value;
}
}