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

com.glookast.api.templates.RequestOutputSystem 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy