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

com.scene7.ipsapi.CreateVignettePublishFormatParam 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="targetWidth" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="targetHeight" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="createPyramid" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="thumbWidth" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="saveAsVersion" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="sizeSuffixSeparator" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="sharpen" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="usmAmount" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="usmRadius" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="usmThreshold" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyHandle", "name", "targetWidth", "targetHeight", "createPyramid", "thumbWidth", "saveAsVersion", "sizeSuffixSeparator", "sharpen", "usmAmount", "usmRadius", "usmThreshold" }) @XmlRootElement(name = "createVignettePublishFormatParam") public class CreateVignettePublishFormatParam { @XmlElement(required = true) protected String companyHandle; @XmlElement(required = true) protected String name; protected int targetWidth; protected int targetHeight; protected boolean createPyramid; protected int thumbWidth; protected int saveAsVersion; @XmlElement(required = true) protected String sizeSuffixSeparator; protected int sharpen; protected double usmAmount; protected double usmRadius; protected int usmThreshold; /** * Gets the value of the companyHandle property. * * @return * possible object is * {@link String } * */ public String getCompanyHandle() { return companyHandle; } /** * Sets the value of the companyHandle property. * * @param value * allowed object is * {@link String } * */ public void setCompanyHandle(String value) { this.companyHandle = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the targetWidth property. * */ public int getTargetWidth() { return targetWidth; } /** * Sets the value of the targetWidth property. * */ public void setTargetWidth(int value) { this.targetWidth = value; } /** * Gets the value of the targetHeight property. * */ public int getTargetHeight() { return targetHeight; } /** * Sets the value of the targetHeight property. * */ public void setTargetHeight(int value) { this.targetHeight = value; } /** * Gets the value of the createPyramid property. * */ public boolean isCreatePyramid() { return createPyramid; } /** * Sets the value of the createPyramid property. * */ public void setCreatePyramid(boolean value) { this.createPyramid = value; } /** * Gets the value of the thumbWidth property. * */ public int getThumbWidth() { return thumbWidth; } /** * Sets the value of the thumbWidth property. * */ public void setThumbWidth(int value) { this.thumbWidth = value; } /** * Gets the value of the saveAsVersion property. * */ public int getSaveAsVersion() { return saveAsVersion; } /** * Sets the value of the saveAsVersion property. * */ public void setSaveAsVersion(int value) { this.saveAsVersion = value; } /** * Gets the value of the sizeSuffixSeparator property. * * @return * possible object is * {@link String } * */ public String getSizeSuffixSeparator() { return sizeSuffixSeparator; } /** * Sets the value of the sizeSuffixSeparator property. * * @param value * allowed object is * {@link String } * */ public void setSizeSuffixSeparator(String value) { this.sizeSuffixSeparator = value; } /** * Gets the value of the sharpen property. * */ public int getSharpen() { return sharpen; } /** * Sets the value of the sharpen property. * */ public void setSharpen(int value) { this.sharpen = value; } /** * Gets the value of the usmAmount property. * */ public double getUsmAmount() { return usmAmount; } /** * Sets the value of the usmAmount property. * */ public void setUsmAmount(double value) { this.usmAmount = value; } /** * Gets the value of the usmRadius property. * */ public double getUsmRadius() { return usmRadius; } /** * Sets the value of the usmRadius property. * */ public void setUsmRadius(double value) { this.usmRadius = value; } /** * Gets the value of the usmThreshold property. * */ public int getUsmThreshold() { return usmThreshold; } /** * Sets the value of the usmThreshold property. * */ public void setUsmThreshold(int value) { this.usmThreshold = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy