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 java.math.BigInteger;
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;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * <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="FilmColor" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="black-and-white"/>
 *               &lt;enumeration value="color"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="FilmType" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="print"/>
 *               &lt;enumeration value="slide"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="Format" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="35mm"/>
 *               &lt;enumeration value="70mm"/>
 *               &lt;enumeration value="110"/>
 *               &lt;enumeration value="120"/>
 *               &lt;enumeration value="220"/>
 *               &lt;enumeration value="2x3"/>
 *               &lt;enumeration value="4x5"/>
 *               &lt;enumeration value="5x7"/>
 *               &lt;enumeration value="8x10"/>
 *               &lt;enumeration value="11x14"/>
 *               &lt;enumeration value="aps"/>
 *               &lt;enumeration value="micro"/>
 *               &lt;enumeration value="instant"/>
 *               &lt;enumeration value="other"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *         &lt;element name="ASA-ISO" type="{}PositiveInteger" minOccurs="0"/>
 *         &lt;element name="ExposureCount" type="{}StringNotNull" minOccurs="0"/>
 *         &lt;element name="LightingType" minOccurs="0">
 *           &lt;simpleType>
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *               &lt;enumeration value="daylight"/>
 *               &lt;enumeration value="infrared"/>
 *               &lt;enumeration value="tungsten"/>
 *             &lt;/restriction>
 *           &lt;/simpleType>
 *         &lt;/element>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "filmColor",
    "filmType",
    "format",
    "asaiso",
    "exposureCount",
    "lightingType"
})
@XmlRootElement(name = "Film")
public class Film {

    @XmlElement(name = "FilmColor")
    protected String filmColor;
    @XmlElement(name = "FilmType")
    protected String filmType;
    @XmlElement(name = "Format")
    protected String format;
    @XmlElement(name = "ASA-ISO")
    protected BigInteger asaiso;
    @XmlElement(name = "ExposureCount")
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
    protected String exposureCount;
    @XmlElement(name = "LightingType")
    protected String lightingType;

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

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

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

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

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

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

    /**
     * Gets the value of the asaiso property.
     * 
     * @return
     *     possible object is
     *     {@link BigInteger }
     *     
     */
    public BigInteger getASAISO() {
        return asaiso;
    }

    /**
     * Sets the value of the asaiso property.
     * 
     * @param value
     *     allowed object is
     *     {@link BigInteger }
     *     
     */
    public void setASAISO(BigInteger value) {
        this.asaiso = value;
    }

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

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

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

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

}