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