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

com.scene7.ipsapi.WindowCoveringInfo Maven / Gradle / Ivy

There is a newer version: 2024.11.18598.20241113T125352Z-241000
Show newest version
//
// 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 WindowCoveringInfo complex type. * *

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

 * <complexType name="WindowCoveringInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="originalPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="originalFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="fileSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="imagePath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="imageFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="optimizedPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="optimizedFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "WindowCoveringInfo", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = { "originalPath", "originalFile", "fileSize", "imagePath", "imageFile", "optimizedPath", "optimizedFile" }) public class WindowCoveringInfo { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String originalPath; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String originalFile; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected Long fileSize; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String imagePath; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String imageFile; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String optimizedPath; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected String optimizedFile; /** * Gets the value of the originalPath property. * * @return * possible object is * {@link String } * */ public String getOriginalPath() { return originalPath; } /** * Sets the value of the originalPath property. * * @param value * allowed object is * {@link String } * */ public void setOriginalPath(String value) { this.originalPath = value; } /** * Gets the value of the originalFile property. * * @return * possible object is * {@link String } * */ public String getOriginalFile() { return originalFile; } /** * Sets the value of the originalFile property. * * @param value * allowed object is * {@link String } * */ public void setOriginalFile(String value) { this.originalFile = value; } /** * Gets the value of the fileSize property. * * @return * possible object is * {@link Long } * */ public Long getFileSize() { return fileSize; } /** * Sets the value of the fileSize property. * * @param value * allowed object is * {@link Long } * */ public void setFileSize(Long value) { this.fileSize = value; } /** * Gets the value of the imagePath property. * * @return * possible object is * {@link String } * */ public String getImagePath() { return imagePath; } /** * Sets the value of the imagePath property. * * @param value * allowed object is * {@link String } * */ public void setImagePath(String value) { this.imagePath = value; } /** * Gets the value of the imageFile property. * * @return * possible object is * {@link String } * */ public String getImageFile() { return imageFile; } /** * Sets the value of the imageFile property. * * @param value * allowed object is * {@link String } * */ public void setImageFile(String value) { this.imageFile = value; } /** * Gets the value of the optimizedPath property. * * @return * possible object is * {@link String } * */ public String getOptimizedPath() { return optimizedPath; } /** * Sets the value of the optimizedPath property. * * @param value * allowed object is * {@link String } * */ public void setOptimizedPath(String value) { this.optimizedPath = value; } /** * Gets the value of the optimizedFile property. * * @return * possible object is * {@link String } * */ public String getOptimizedFile() { return optimizedFile; } /** * Sets the value of the optimizedFile property. * * @param value * allowed object is * {@link String } * */ public void setOptimizedFile(String value) { this.optimizedFile = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy