Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.03.04 at 03:49:29 PM IST 
//


package in.shop2020.feeds.products;

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;


/**
 * <p>Java class for anonymous complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="PaperType" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="black-and-white"/>
 *               &lt;enumeration value="color-negative"/>
 *               &lt;enumeration value="color-reversal"/>
 *               &lt;enumeration value="ra-chemistry"/>
 *               &lt;enumeration value="other"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="PaperBase" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="polyester-based"/>
 *               &lt;enumeration value="fiber-based"/>
 *               &lt;enumeration value="resin-coated"/>
 *               &lt;enumeration value="other"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="PaperSurface" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="glossy"/>
 *               &lt;enumeration value="semi-glossy"/>
 *               &lt;enumeration value="matt"/>
 *               &lt;enumeration value="semi-matt"/>
 *               &lt;enumeration value="pearl"/>
 *               &lt;enumeration value="luster"/>
 *               &lt;enumeration value="satin"/>
 *               &lt;enumeration value="other"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="PaperGrade" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="grade-0"/>
 *               &lt;enumeration value="grade-1"/>
 *               &lt;enumeration value="grade-2"/>
 *               &lt;enumeration value="grade-3"/>
 *               &lt;enumeration value="grade-4"/>
 *               &lt;enumeration value="multigrade"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="PaperSize" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="10x10"/>
 *               &lt;enumeration value="10x12"/>
 *               &lt;enumeration value="10x20"/>
 *               &lt;enumeration value="11x14"/>
 *               &lt;enumeration value="12x17"/>
 *               &lt;enumeration value="16x20"/>
 *               &lt;enumeration value="20x24"/>
 *               &lt;enumeration value="20x30"/>
 *               &lt;enumeration value="24x30"/>
 *               &lt;enumeration value="3.5x5"/>
 *               &lt;enumeration value="30x40"/>
 *               &lt;enumeration value="4x5"/>
 *               &lt;enumeration value="4x6"/>
 *               &lt;enumeration value="5x7"/>
 *               &lt;enumeration value="8.5x11"/>
 *               &lt;enumeration value="8x10"/>
 *               &lt;enumeration value="roll"/>
 *               &lt;enumeration value="other"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "paperType",
    "paperBase",
    "paperSurface",
    "paperGrade",
    "paperSize"
})
@XmlRootElement(name = "PhotoPaper")
public class PhotoPaper {

    @XmlElement(name = "PaperType")
    protected String paperType;
    @XmlElement(name = "PaperBase")
    protected String paperBase;
    @XmlElement(name = "PaperSurface")
    protected String paperSurface;
    @XmlElement(name = "PaperGrade")
    protected String paperGrade;
    @XmlElement(name = "PaperSize")
    protected String paperSize;

    /**
     * Gets the value of the paperType property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPaperType() {
        return paperType;
    }

    /**
     * Sets the value of the paperType property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPaperType(String value) {
        this.paperType = value;
    }

    /**
     * Gets the value of the paperBase property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPaperBase() {
        return paperBase;
    }

    /**
     * Sets the value of the paperBase property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPaperBase(String value) {
        this.paperBase = value;
    }

    /**
     * Gets the value of the paperSurface property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPaperSurface() {
        return paperSurface;
    }

    /**
     * Sets the value of the paperSurface property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPaperSurface(String value) {
        this.paperSurface = value;
    }

    /**
     * Gets the value of the paperGrade property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPaperGrade() {
        return paperGrade;
    }

    /**
     * Sets the value of the paperGrade property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPaperGrade(String value) {
        this.paperGrade = value;
    }

    /**
     * Gets the value of the paperSize property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getPaperSize() {
        return paperSize;
    }

    /**
     * Sets the value of the paperSize property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setPaperSize(String value) {
        this.paperSize = value;
    }

}