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