![JAR search and dependency download from the Maven repository](/logo.png)
com.scene7.ipsapi.VignettePublishFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
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 VignettePublishFormat complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VignettePublishFormat">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="companyHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="vignetteFormatHandle" 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 = "VignettePublishFormat", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"companyHandle",
"vignetteFormatHandle",
"name",
"targetWidth",
"targetHeight",
"createPyramid",
"thumbWidth",
"saveAsVersion",
"sizeSuffixSeparator",
"sharpen",
"usmAmount",
"usmRadius",
"usmThreshold"
})
public class VignettePublishFormat {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String companyHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String vignetteFormatHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String name;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int targetWidth;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int targetHeight;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean createPyramid;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int thumbWidth;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int saveAsVersion;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String sizeSuffixSeparator;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected int sharpen;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected double usmAmount;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected double usmRadius;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
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 vignetteFormatHandle property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVignetteFormatHandle() {
return vignetteFormatHandle;
}
/**
* Sets the value of the vignetteFormatHandle property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVignetteFormatHandle(String value) {
this.vignetteFormatHandle = 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 - 2025 Weber Informatics LLC | Privacy Policy