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

com.scene7.ipsapi.SetCompanySettingsParam 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="overwriteMode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="retainPublishState" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="defaultSourceProfileHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="defaultDisplayProfileHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="iptcExifMappingXsltHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="xmpMappingXsltHandle" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="diskSpaceWarningMin" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="emailTrashCleanupWarning" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="fileExtOpt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "companyHandle", "overwriteMode", "retainPublishState", "defaultSourceProfileHandle", "defaultDisplayProfileHandle", "iptcExifMappingXsltHandle", "xmpMappingXsltHandle", "diskSpaceWarningMin", "emailTrashCleanupWarning", "fileExtOpt" }) @XmlRootElement(name = "setCompanySettingsParam") public class SetCompanySettingsParam { @XmlElement(required = true) protected String companyHandle; protected String overwriteMode; protected Boolean retainPublishState; protected String defaultSourceProfileHandle; protected String defaultDisplayProfileHandle; protected String iptcExifMappingXsltHandle; protected String xmpMappingXsltHandle; protected Integer diskSpaceWarningMin; protected Boolean emailTrashCleanupWarning; protected String fileExtOpt; /** * 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 overwriteMode property. * * @return * possible object is * {@link String } * */ public String getOverwriteMode() { return overwriteMode; } /** * Sets the value of the overwriteMode property. * * @param value * allowed object is * {@link String } * */ public void setOverwriteMode(String value) { this.overwriteMode = value; } /** * Gets the value of the retainPublishState property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRetainPublishState() { return retainPublishState; } /** * Sets the value of the retainPublishState property. * * @param value * allowed object is * {@link Boolean } * */ public void setRetainPublishState(Boolean value) { this.retainPublishState = value; } /** * Gets the value of the defaultSourceProfileHandle property. * * @return * possible object is * {@link String } * */ public String getDefaultSourceProfileHandle() { return defaultSourceProfileHandle; } /** * Sets the value of the defaultSourceProfileHandle property. * * @param value * allowed object is * {@link String } * */ public void setDefaultSourceProfileHandle(String value) { this.defaultSourceProfileHandle = value; } /** * Gets the value of the defaultDisplayProfileHandle property. * * @return * possible object is * {@link String } * */ public String getDefaultDisplayProfileHandle() { return defaultDisplayProfileHandle; } /** * Sets the value of the defaultDisplayProfileHandle property. * * @param value * allowed object is * {@link String } * */ public void setDefaultDisplayProfileHandle(String value) { this.defaultDisplayProfileHandle = value; } /** * Gets the value of the iptcExifMappingXsltHandle property. * * @return * possible object is * {@link String } * */ public String getIptcExifMappingXsltHandle() { return iptcExifMappingXsltHandle; } /** * Sets the value of the iptcExifMappingXsltHandle property. * * @param value * allowed object is * {@link String } * */ public void setIptcExifMappingXsltHandle(String value) { this.iptcExifMappingXsltHandle = value; } /** * Gets the value of the xmpMappingXsltHandle property. * * @return * possible object is * {@link String } * */ public String getXmpMappingXsltHandle() { return xmpMappingXsltHandle; } /** * Sets the value of the xmpMappingXsltHandle property. * * @param value * allowed object is * {@link String } * */ public void setXmpMappingXsltHandle(String value) { this.xmpMappingXsltHandle = value; } /** * Gets the value of the diskSpaceWarningMin property. * * @return * possible object is * {@link Integer } * */ public Integer getDiskSpaceWarningMin() { return diskSpaceWarningMin; } /** * Sets the value of the diskSpaceWarningMin property. * * @param value * allowed object is * {@link Integer } * */ public void setDiskSpaceWarningMin(Integer value) { this.diskSpaceWarningMin = value; } /** * Gets the value of the emailTrashCleanupWarning property. * * @return * possible object is * {@link Boolean } * */ public Boolean isEmailTrashCleanupWarning() { return emailTrashCleanupWarning; } /** * Sets the value of the emailTrashCleanupWarning property. * * @param value * allowed object is * {@link Boolean } * */ public void setEmailTrashCleanupWarning(Boolean value) { this.emailTrashCleanupWarning = value; } /** * Gets the value of the fileExtOpt property. * * @return * possible object is * {@link String } * */ public String getFileExtOpt() { return fileExtOpt; } /** * Sets the value of the fileExtOpt property. * * @param value * allowed object is * {@link String } * */ public void setFileExtOpt(String value) { this.fileExtOpt = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy