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

com.scene7.ipsapi.RipPdfsJob 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 RipPdfsJob complex type. * *

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

 * <complexType name="RipPdfsJob">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="pdfHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray"/>
 *         <element name="createMask" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="knockoutBackgroundOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}KnockoutBackgroundOptions" minOccurs="0"/>
 *         <element name="manualCropOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ManualCropOptions" minOccurs="0"/>
 *         <element name="autoColorCropOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AutoColorCropOptions" minOccurs="0"/>
 *         <element name="autoTransparentCropOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AutoTransparentCropOptions" minOccurs="0"/>
 *         <element name="autoSmartCropOptionsArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}AutoSmartCropOptionsArray" minOccurs="0"/>
 *         <element name="postScriptOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}PostScriptOptions" minOccurs="0"/>
 *         <element name="pdfOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}PDFOptions" minOccurs="0"/>
 *         <element name="illustratorOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}IllustratorOptions" minOccurs="0"/>
 *         <element name="colorManagementOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ColorManagementOptions" minOccurs="0"/>
 *         <element name="projectHandleArray" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}HandleArray" minOccurs="0"/>
 *         <element name="emailSetting" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="postHttpUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="postImageServingPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ImageServingPublishJob" minOccurs="0"/>
 *         <element name="postImageRenderingPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ImageRenderingPublishJob" minOccurs="0"/>
 *         <element name="postVideoPublishJob" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}VideoPublishJob" minOccurs="0"/>
 *         <element name="inDesignOptions" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}InDesignOptions" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RipPdfsJob", propOrder = { "pdfHandleArray", "createMask", "knockoutBackgroundOptions", "manualCropOptions", "autoColorCropOptions", "autoTransparentCropOptions", "autoSmartCropOptionsArray", "postScriptOptions", "pdfOptions", "illustratorOptions", "colorManagementOptions", "projectHandleArray", "emailSetting", "postHttpUrl", "postImageServingPublishJob", "postImageRenderingPublishJob", "postVideoPublishJob", "inDesignOptions" }) public class RipPdfsJob { @XmlElement(required = true) protected HandleArray pdfHandleArray; protected boolean createMask; protected KnockoutBackgroundOptions knockoutBackgroundOptions; protected ManualCropOptions manualCropOptions; protected AutoColorCropOptions autoColorCropOptions; protected AutoTransparentCropOptions autoTransparentCropOptions; protected AutoSmartCropOptionsArray autoSmartCropOptionsArray; protected PostScriptOptions postScriptOptions; protected PDFOptions pdfOptions; protected IllustratorOptions illustratorOptions; protected ColorManagementOptions colorManagementOptions; protected HandleArray projectHandleArray; @XmlElement(required = true) protected String emailSetting; protected String postHttpUrl; protected ImageServingPublishJob postImageServingPublishJob; protected ImageRenderingPublishJob postImageRenderingPublishJob; protected VideoPublishJob postVideoPublishJob; protected InDesignOptions inDesignOptions; /** * Gets the value of the pdfHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getPdfHandleArray() { return pdfHandleArray; } /** * Sets the value of the pdfHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setPdfHandleArray(HandleArray value) { this.pdfHandleArray = value; } /** * Gets the value of the createMask property. * */ public boolean isCreateMask() { return createMask; } /** * Sets the value of the createMask property. * */ public void setCreateMask(boolean value) { this.createMask = value; } /** * Gets the value of the knockoutBackgroundOptions property. * * @return * possible object is * {@link KnockoutBackgroundOptions } * */ public KnockoutBackgroundOptions getKnockoutBackgroundOptions() { return knockoutBackgroundOptions; } /** * Sets the value of the knockoutBackgroundOptions property. * * @param value * allowed object is * {@link KnockoutBackgroundOptions } * */ public void setKnockoutBackgroundOptions(KnockoutBackgroundOptions value) { this.knockoutBackgroundOptions = value; } /** * Gets the value of the manualCropOptions property. * * @return * possible object is * {@link ManualCropOptions } * */ public ManualCropOptions getManualCropOptions() { return manualCropOptions; } /** * Sets the value of the manualCropOptions property. * * @param value * allowed object is * {@link ManualCropOptions } * */ public void setManualCropOptions(ManualCropOptions value) { this.manualCropOptions = value; } /** * Gets the value of the autoColorCropOptions property. * * @return * possible object is * {@link AutoColorCropOptions } * */ public AutoColorCropOptions getAutoColorCropOptions() { return autoColorCropOptions; } /** * Sets the value of the autoColorCropOptions property. * * @param value * allowed object is * {@link AutoColorCropOptions } * */ public void setAutoColorCropOptions(AutoColorCropOptions value) { this.autoColorCropOptions = value; } /** * Gets the value of the autoTransparentCropOptions property. * * @return * possible object is * {@link AutoTransparentCropOptions } * */ public AutoTransparentCropOptions getAutoTransparentCropOptions() { return autoTransparentCropOptions; } /** * Sets the value of the autoTransparentCropOptions property. * * @param value * allowed object is * {@link AutoTransparentCropOptions } * */ public void setAutoTransparentCropOptions(AutoTransparentCropOptions value) { this.autoTransparentCropOptions = value; } /** * Gets the value of the autoSmartCropOptionsArray property. * * @return * possible object is * {@link AutoSmartCropOptionsArray } * */ public AutoSmartCropOptionsArray getAutoSmartCropOptionsArray() { return autoSmartCropOptionsArray; } /** * Sets the value of the autoSmartCropOptionsArray property. * * @param value * allowed object is * {@link AutoSmartCropOptionsArray } * */ public void setAutoSmartCropOptionsArray(AutoSmartCropOptionsArray value) { this.autoSmartCropOptionsArray = value; } /** * Gets the value of the postScriptOptions property. * * @return * possible object is * {@link PostScriptOptions } * */ public PostScriptOptions getPostScriptOptions() { return postScriptOptions; } /** * Sets the value of the postScriptOptions property. * * @param value * allowed object is * {@link PostScriptOptions } * */ public void setPostScriptOptions(PostScriptOptions value) { this.postScriptOptions = value; } /** * Gets the value of the pdfOptions property. * * @return * possible object is * {@link PDFOptions } * */ public PDFOptions getPdfOptions() { return pdfOptions; } /** * Sets the value of the pdfOptions property. * * @param value * allowed object is * {@link PDFOptions } * */ public void setPdfOptions(PDFOptions value) { this.pdfOptions = value; } /** * Gets the value of the illustratorOptions property. * * @return * possible object is * {@link IllustratorOptions } * */ public IllustratorOptions getIllustratorOptions() { return illustratorOptions; } /** * Sets the value of the illustratorOptions property. * * @param value * allowed object is * {@link IllustratorOptions } * */ public void setIllustratorOptions(IllustratorOptions value) { this.illustratorOptions = value; } /** * Gets the value of the colorManagementOptions property. * * @return * possible object is * {@link ColorManagementOptions } * */ public ColorManagementOptions getColorManagementOptions() { return colorManagementOptions; } /** * Sets the value of the colorManagementOptions property. * * @param value * allowed object is * {@link ColorManagementOptions } * */ public void setColorManagementOptions(ColorManagementOptions value) { this.colorManagementOptions = value; } /** * Gets the value of the projectHandleArray property. * * @return * possible object is * {@link HandleArray } * */ public HandleArray getProjectHandleArray() { return projectHandleArray; } /** * Sets the value of the projectHandleArray property. * * @param value * allowed object is * {@link HandleArray } * */ public void setProjectHandleArray(HandleArray value) { this.projectHandleArray = value; } /** * Gets the value of the emailSetting property. * * @return * possible object is * {@link String } * */ public String getEmailSetting() { return emailSetting; } /** * Sets the value of the emailSetting property. * * @param value * allowed object is * {@link String } * */ public void setEmailSetting(String value) { this.emailSetting = value; } /** * Gets the value of the postHttpUrl property. * * @return * possible object is * {@link String } * */ public String getPostHttpUrl() { return postHttpUrl; } /** * Sets the value of the postHttpUrl property. * * @param value * allowed object is * {@link String } * */ public void setPostHttpUrl(String value) { this.postHttpUrl = value; } /** * Gets the value of the postImageServingPublishJob property. * * @return * possible object is * {@link ImageServingPublishJob } * */ public ImageServingPublishJob getPostImageServingPublishJob() { return postImageServingPublishJob; } /** * Sets the value of the postImageServingPublishJob property. * * @param value * allowed object is * {@link ImageServingPublishJob } * */ public void setPostImageServingPublishJob(ImageServingPublishJob value) { this.postImageServingPublishJob = value; } /** * Gets the value of the postImageRenderingPublishJob property. * * @return * possible object is * {@link ImageRenderingPublishJob } * */ public ImageRenderingPublishJob getPostImageRenderingPublishJob() { return postImageRenderingPublishJob; } /** * Sets the value of the postImageRenderingPublishJob property. * * @param value * allowed object is * {@link ImageRenderingPublishJob } * */ public void setPostImageRenderingPublishJob(ImageRenderingPublishJob value) { this.postImageRenderingPublishJob = value; } /** * Gets the value of the postVideoPublishJob property. * * @return * possible object is * {@link VideoPublishJob } * */ public VideoPublishJob getPostVideoPublishJob() { return postVideoPublishJob; } /** * Sets the value of the postVideoPublishJob property. * * @param value * allowed object is * {@link VideoPublishJob } * */ public void setPostVideoPublishJob(VideoPublishJob value) { this.postVideoPublishJob = value; } /** * Gets the value of the inDesignOptions property. * * @return * possible object is * {@link InDesignOptions } * */ public InDesignOptions getInDesignOptions() { return inDesignOptions; } /** * Sets the value of the inDesignOptions property. * * @param value * allowed object is * {@link InDesignOptions } * */ public void setInDesignOptions(InDesignOptions value) { this.inDesignOptions = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy