com.glookast.api.templates.ResponseTemplate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-templates Show documentation
Show all versions of api-templates Show documentation
Generated artifacts used for interfacing with Glookast Products
package com.glookast.api.templates;
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.templates.Template;
/**
* Java class for ResponseTemplate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ResponseTemplate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="return" type="{http://templates.commons.glookast.com}Template"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ResponseTemplate", propOrder = {
"_return"
})
public class ResponseTemplate implements Serializable
{
@XmlElement(name = "return", required = true)
protected Template _return;
/**
* Default no-arg constructor
*
*/
public ResponseTemplate() {
super();
}
/**
* Fully-initialising value constructor
*
*/
public ResponseTemplate(final Template _return) {
this._return = _return;
}
/**
* Gets the value of the return property.
*
* @return
* possible object is
* {@link Template }
*
*/
public Template getReturn() {
return _return;
}
/**
* Sets the value of the return property.
*
* @param value
* allowed object is
* {@link Template }
*
*/
public void setReturn(Template value) {
this._return = value;
}
}