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

com.glookast.api.templates.ResponseTemplate Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy