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

com.scene7.ipsapi.IccProfileFieldUpdate Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for IccProfileFieldUpdate complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="IccProfileFieldUpdate">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="assetHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="class" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="colorSpace" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="pcsType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IccProfileFieldUpdate", propOrder = { "assetHandle", "clazz", "colorSpace", "pcsType" }) public class IccProfileFieldUpdate { @XmlElement(required = true) protected String assetHandle; @XmlElement(name = "class") protected String clazz; protected String colorSpace; protected String pcsType; /** * Gets the value of the assetHandle property. * * @return * possible object is * {@link String } * */ public String getAssetHandle() { return assetHandle; } /** * Sets the value of the assetHandle property. * * @param value * allowed object is * {@link String } * */ public void setAssetHandle(String value) { this.assetHandle = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Gets the value of the colorSpace property. * * @return * possible object is * {@link String } * */ public String getColorSpace() { return colorSpace; } /** * Sets the value of the colorSpace property. * * @param value * allowed object is * {@link String } * */ public void setColorSpace(String value) { this.colorSpace = value; } /** * Gets the value of the pcsType property. * * @return * possible object is * {@link String } * */ public String getPcsType() { return pcsType; } /** * Sets the value of the pcsType property. * * @param value * allowed object is * {@link String } * */ public void setPcsType(String value) { this.pcsType = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy