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

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

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

 * <complexType name="CompanySettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="overwriteMode" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="retainPublishState" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="defaultSourceProfile" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}Asset"/>
 *         <element name="defaultDisplayProfile" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}Asset"/>
 *         <element name="iptcExifMappingXslt" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}Asset" minOccurs="0"/>
 *         <element name="xmpMappingXslt" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}Asset" minOccurs="0"/>
 *         <element name="diskSpaceWarningMin" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="emailTrashCleanupWarning" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
 *         <element name="fileExtOpt" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CompanySettings", propOrder = { "overwriteMode", "retainPublishState", "defaultSourceProfile", "defaultDisplayProfile", "iptcExifMappingXslt", "xmpMappingXslt", "diskSpaceWarningMin", "emailTrashCleanupWarning", "fileExtOpt" }) public class CompanySettings { @XmlElement(required = true) protected String overwriteMode; protected boolean retainPublishState; @XmlElement(required = true) protected Asset defaultSourceProfile; @XmlElement(required = true) protected Asset defaultDisplayProfile; protected Asset iptcExifMappingXslt; protected Asset xmpMappingXslt; protected int diskSpaceWarningMin; protected boolean emailTrashCleanupWarning; protected String fileExtOpt; /** * 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. * */ public boolean isRetainPublishState() { return retainPublishState; } /** * Sets the value of the retainPublishState property. * */ public void setRetainPublishState(boolean value) { this.retainPublishState = value; } /** * Gets the value of the defaultSourceProfile property. * * @return * possible object is * {@link Asset } * */ public Asset getDefaultSourceProfile() { return defaultSourceProfile; } /** * Sets the value of the defaultSourceProfile property. * * @param value * allowed object is * {@link Asset } * */ public void setDefaultSourceProfile(Asset value) { this.defaultSourceProfile = value; } /** * Gets the value of the defaultDisplayProfile property. * * @return * possible object is * {@link Asset } * */ public Asset getDefaultDisplayProfile() { return defaultDisplayProfile; } /** * Sets the value of the defaultDisplayProfile property. * * @param value * allowed object is * {@link Asset } * */ public void setDefaultDisplayProfile(Asset value) { this.defaultDisplayProfile = value; } /** * Gets the value of the iptcExifMappingXslt property. * * @return * possible object is * {@link Asset } * */ public Asset getIptcExifMappingXslt() { return iptcExifMappingXslt; } /** * Sets the value of the iptcExifMappingXslt property. * * @param value * allowed object is * {@link Asset } * */ public void setIptcExifMappingXslt(Asset value) { this.iptcExifMappingXslt = value; } /** * Gets the value of the xmpMappingXslt property. * * @return * possible object is * {@link Asset } * */ public Asset getXmpMappingXslt() { return xmpMappingXslt; } /** * Sets the value of the xmpMappingXslt property. * * @param value * allowed object is * {@link Asset } * */ public void setXmpMappingXslt(Asset value) { this.xmpMappingXslt = value; } /** * Gets the value of the diskSpaceWarningMin property. * */ public int getDiskSpaceWarningMin() { return diskSpaceWarningMin; } /** * Sets the value of the diskSpaceWarningMin property. * */ public void setDiskSpaceWarningMin(int value) { this.diskSpaceWarningMin = value; } /** * Gets the value of the emailTrashCleanupWarning property. * */ public boolean isEmailTrashCleanupWarning() { return emailTrashCleanupWarning; } /** * Sets the value of the emailTrashCleanupWarning property. * */ 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