/* * Copyright (C) 2011 Toshiaki Maki <makingx@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package am.ik.aws.apa.jaxws; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for anonymous complex type. * * <p> * The following schema fragment specifies the expected content contained within * this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="SwatchImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * <element name="SmallImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * <element name="ThumbnailImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * <element name="TinyImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * <element name="MediumImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * <element name="LargeImage" type="{http://webservices.amazon.com/AWSECommerceService/2011-08-01}Image" minOccurs="0"/> * </sequence> * <attribute name="Category" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "swatchImage", "smallImage", "thumbnailImage", "tinyImage", "mediumImage", "largeImage" }) @XmlRootElement(name = "ImageSet") public class ImageSet { @XmlElement(name = "SwatchImage") protected Image swatchImage; @XmlElement(name = "SmallImage") protected Image smallImage; @XmlElement(name = "ThumbnailImage") protected Image thumbnailImage; @XmlElement(name = "TinyImage") protected Image tinyImage; @XmlElement(name = "MediumImage") protected Image mediumImage; @XmlElement(name = "LargeImage") protected Image largeImage; @XmlAttribute(name = "Category") protected String category; /** * Gets the value of the swatchImage property. * * @return possible object is {@link Image } * */ public Image getSwatchImage() { return swatchImage; } /** * Sets the value of the swatchImage property. * * @param value * allowed object is {@link Image } * */ public void setSwatchImage(Image value) { this.swatchImage = value; } /** * Gets the value of the smallImage property. * * @return possible object is {@link Image } * */ public Image getSmallImage() { return smallImage; } /** * Sets the value of the smallImage property. * * @param value * allowed object is {@link Image } * */ public void setSmallImage(Image value) { this.smallImage = value; } /** * Gets the value of the thumbnailImage property. * * @return possible object is {@link Image } * */ public Image getThumbnailImage() { return thumbnailImage; } /** * Sets the value of the thumbnailImage property. * * @param value * allowed object is {@link Image } * */ public void setThumbnailImage(Image value) { this.thumbnailImage = value; } /** * Gets the value of the tinyImage property. * * @return possible object is {@link Image } * */ public Image getTinyImage() { return tinyImage; } /** * Sets the value of the tinyImage property. * * @param value * allowed object is {@link Image } * */ public void setTinyImage(Image value) { this.tinyImage = value; } /** * Gets the value of the mediumImage property. * * @return possible object is {@link Image } * */ public Image getMediumImage() { return mediumImage; } /** * Sets the value of the mediumImage property. * * @param value * allowed object is {@link Image } * */ public void setMediumImage(Image value) { this.mediumImage = value; } /** * Gets the value of the largeImage property. * * @return possible object is {@link Image } * */ public Image getLargeImage() { return largeImage; } /** * Sets the value of the largeImage property. * * @param value * allowed object is {@link Image } * */ public void setLargeImage(Image value) { this.largeImage = value; } /** * Gets the value of the category property. * * @return possible object is {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is {@link String } * */ public void setCategory(String value) { this.category = value; } }