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>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="FilmColor" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="black-and-white"/>* <enumeration value="color"/>* </restriction>* </simpleType>* </element>* <element name="FilmType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="print"/>* <enumeration value="slide"/>* </restriction>* </simpleType>* </element>* <element name="Format" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="35mm"/>* <enumeration value="70mm"/>* <enumeration value="110"/>* <enumeration value="120"/>* <enumeration value="220"/>* <enumeration value="2x3"/>* <enumeration value="4x5"/>* <enumeration value="5x7"/>* <enumeration value="8x10"/>* <enumeration value="11x14"/>* <enumeration value="aps"/>* <enumeration value="micro"/>* <enumeration value="instant"/>* <enumeration value="other"/>* </restriction>* </simpleType>* </element>* <element name="ASA-ISO" type="{}PositiveInteger" minOccurs="0"/>* <element name="ExposureCount" type="{}StringNotNull" minOccurs="0"/>* <element name="LightingType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="daylight"/>* <enumeration value="infrared"/>* <enumeration value="tungsten"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </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;}}