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