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