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