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