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

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


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.MetadataSystem;


/**
 * 

Java class for ResponseMetadataSystem complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ResponseMetadataSystem">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="return" type="{http://templates.commons.glookast.com}MetadataSystem"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ResponseMetadataSystem", propOrder = { "_return" }) public class ResponseMetadataSystem implements Serializable { @XmlElement(name = "return", required = true) protected MetadataSystem _return; /** * Default no-arg constructor * */ public ResponseMetadataSystem() { super(); } /** * Fully-initialising value constructor * */ public ResponseMetadataSystem(final MetadataSystem _return) { this._return = _return; } /** * Gets the value of the return property. * * @return * possible object is * {@link MetadataSystem } * */ public MetadataSystem getReturn() { return _return; } /** * Sets the value of the return property. * * @param value * allowed object is * {@link MetadataSystem } * */ public void setReturn(MetadataSystem value) { this._return = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy