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

com.scene7.ipsapi.ImageInfo 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.XmlType;


/**
 * 

Java class for ImageInfo complex type. * *

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

 * <complexType name="ImageInfo">
 *   <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="optimizedPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="optimizedFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="maskPath" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="maskFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="width" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="height" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="fileSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="resolution" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="sku" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="comments" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="userData" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="anchorX" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="anchorY" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="urlModifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="urlPostApplyModifier" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="zoomTargets" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ZoomTargetArray" minOccurs="0"/>
 *         <element name="masks" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}MaskArray" minOccurs="0"/>
 *         <element name="imageMaps" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}ImageMapArray" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ImageInfo", propOrder = { "originalPath", "originalFile", "optimizedPath", "optimizedFile", "maskPath", "maskFile", "width", "height", "fileSize", "resolution", "sku", "description", "comments", "userData", "anchorX", "anchorY", "urlModifier", "urlPostApplyModifier", "zoomTargets", "masks", "imageMaps" }) public class ImageInfo { protected String originalPath; protected String originalFile; protected String optimizedPath; protected String optimizedFile; protected String maskPath; protected String maskFile; protected Integer width; protected Integer height; protected Long fileSize; protected Double resolution; protected String sku; protected String description; protected String comments; protected String userData; protected Integer anchorX; protected Integer anchorY; protected String urlModifier; protected String urlPostApplyModifier; protected ZoomTargetArray zoomTargets; protected MaskArray masks; protected ImageMapArray imageMaps; /** * 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 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; } /** * Gets the value of the maskPath property. * * @return * possible object is * {@link String } * */ public String getMaskPath() { return maskPath; } /** * Sets the value of the maskPath property. * * @param value * allowed object is * {@link String } * */ public void setMaskPath(String value) { this.maskPath = value; } /** * Gets the value of the maskFile property. * * @return * possible object is * {@link String } * */ public String getMaskFile() { return maskFile; } /** * Sets the value of the maskFile property. * * @param value * allowed object is * {@link String } * */ public void setMaskFile(String value) { this.maskFile = value; } /** * Gets the value of the width property. * * @return * possible object is * {@link Integer } * */ public Integer getWidth() { return width; } /** * Sets the value of the width property. * * @param value * allowed object is * {@link Integer } * */ public void setWidth(Integer value) { this.width = value; } /** * Gets the value of the height property. * * @return * possible object is * {@link Integer } * */ public Integer getHeight() { return height; } /** * Sets the value of the height property. * * @param value * allowed object is * {@link Integer } * */ public void setHeight(Integer value) { this.height = 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 resolution property. * * @return * possible object is * {@link Double } * */ public Double getResolution() { return resolution; } /** * Sets the value of the resolution property. * * @param value * allowed object is * {@link Double } * */ public void setResolution(Double value) { this.resolution = value; } /** * Gets the value of the sku property. * * @return * possible object is * {@link String } * */ public String getSku() { return sku; } /** * Sets the value of the sku property. * * @param value * allowed object is * {@link String } * */ public void setSku(String value) { this.sku = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the comments property. * * @return * possible object is * {@link String } * */ public String getComments() { return comments; } /** * Sets the value of the comments property. * * @param value * allowed object is * {@link String } * */ public void setComments(String value) { this.comments = value; } /** * Gets the value of the userData property. * * @return * possible object is * {@link String } * */ public String getUserData() { return userData; } /** * Sets the value of the userData property. * * @param value * allowed object is * {@link String } * */ public void setUserData(String value) { this.userData = value; } /** * Gets the value of the anchorX property. * * @return * possible object is * {@link Integer } * */ public Integer getAnchorX() { return anchorX; } /** * Sets the value of the anchorX property. * * @param value * allowed object is * {@link Integer } * */ public void setAnchorX(Integer value) { this.anchorX = value; } /** * Gets the value of the anchorY property. * * @return * possible object is * {@link Integer } * */ public Integer getAnchorY() { return anchorY; } /** * Sets the value of the anchorY property. * * @param value * allowed object is * {@link Integer } * */ public void setAnchorY(Integer value) { this.anchorY = value; } /** * Gets the value of the urlModifier property. * * @return * possible object is * {@link String } * */ public String getUrlModifier() { return urlModifier; } /** * Sets the value of the urlModifier property. * * @param value * allowed object is * {@link String } * */ public void setUrlModifier(String value) { this.urlModifier = value; } /** * Gets the value of the urlPostApplyModifier property. * * @return * possible object is * {@link String } * */ public String getUrlPostApplyModifier() { return urlPostApplyModifier; } /** * Sets the value of the urlPostApplyModifier property. * * @param value * allowed object is * {@link String } * */ public void setUrlPostApplyModifier(String value) { this.urlPostApplyModifier = value; } /** * Gets the value of the zoomTargets property. * * @return * possible object is * {@link ZoomTargetArray } * */ public ZoomTargetArray getZoomTargets() { return zoomTargets; } /** * Sets the value of the zoomTargets property. * * @param value * allowed object is * {@link ZoomTargetArray } * */ public void setZoomTargets(ZoomTargetArray value) { this.zoomTargets = value; } /** * Gets the value of the masks property. * * @return * possible object is * {@link MaskArray } * */ public MaskArray getMasks() { return masks; } /** * Sets the value of the masks property. * * @param value * allowed object is * {@link MaskArray } * */ public void setMasks(MaskArray value) { this.masks = value; } /** * Gets the value of the imageMaps property. * * @return * possible object is * {@link ImageMapArray } * */ public ImageMapArray getImageMaps() { return imageMaps; } /** * Sets the value of the imageMaps property. * * @param value * allowed object is * {@link ImageMapArray } * */ public void setImageMaps(ImageMapArray value) { this.imageMaps = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy