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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy