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