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>* <complexType>* <complexContent>* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">* <sequence>* <element name="ForUseWith" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="film-cameras"/>* <enumeration value="digital-cameras"/>* <enumeration value="analog-camcorders-general"/>* <enumeration value="8mm-camcorders"/>* <enumeration value="betacam-sp-camcorders"/>* <enumeration value="hi-8-camcorders"/>* <enumeration value="s-vhs-camcorders"/>* <enumeration value="s-vhs-c-camcorders"/>* <enumeration value="vhs-camcorders"/>* <enumeration value="vhs-c-camcorders"/>* <enumeration value="other-analog-formats-camcorders"/>* <enumeration value="digital-camcorders-general"/>* <enumeration value="digital-betacam-camcorders"/>* <enumeration value="dv-camcorders"/>* <enumeration value="dvcam-camcorders"/>* <enumeration value="dvcpro-camcorders"/>* <enumeration value="minidv-camcorders"/>* <enumeration value="micromv-camcorders"/>* <enumeration value="digital8-camcorders"/>* <enumeration value="dvd-camcorders"/>* <enumeration value="minidisc-camcorders"/>* <enumeration value="other-digital-formats-camcorders"/>* <enumeration value="flashes"/>* <enumeration value="lighting"/>* <enumeration value="surveillence-products"/>* <enumeration value="other-products"/>* </restriction>* </simpleType>* </element>* <element name="CameraPowerSupplyType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="batteries-general"/>* <enumeration value="disposable-batteries"/>* <enumeration value="rechargeable-Batteries"/>* <enumeration value="external-batteries"/>* <enumeration value="battery-packs-general"/>* <enumeration value="shoulder-battery-packs"/>* <enumeration value="belt-battery-packs"/>* <enumeration value="dedicated-battery-packs"/>* <enumeration value="other-batteries-and-packs"/>* <enumeration value="adapters-general"/>* <enumeration value="ac-adapters"/>* <enumeration value="dc-adapters"/>* <enumeration value="battery-chargers"/>* <enumeration value="ac-power-supply"/>* <enumeration value="dc-power-supply"/>* <enumeration value="other-power-supplies"/>* </restriction>* </simpleType>* </element>* <element name="BatteryChemicalType" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="lead-acid"/>* <enumeration value="lithium"/>* <enumeration value="lithium-ion"/>* <enumeration value="nickel-metal-hydride"/>* <enumeration value="nicd"/>* <enumeration value="silver-oxide"/>* <enumeration value="alkaline"/>* <enumeration value="other-battery-types"/>* </restriction>* </simpleType>* </element>* <element name="PowerSupplyAccessories" minOccurs="0">* <simpleType>* <restriction base="{http://www.w3.org/2001/XMLSchema}string">* <enumeration value="battery-holders"/>* <enumeration value="battery-testers"/>* <enumeration value="mounting-plates"/>* <enumeration value="cables-general"/>* <enumeration value="battery-power-cables"/>* <enumeration value="power-supply-cables"/>* <enumeration value="charger-cables"/>* <enumeration value="adapter-cables"/>* <enumeration value="other-cables"/>* <enumeration value="cigarette-connectors"/>* <enumeration value="xlr-connectors"/>* <enumeration value="dc-couplers"/>* </restriction>* </simpleType>* </element>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"forUseWith","cameraPowerSupplyType","batteryChemicalType","powerSupplyAccessories"})@XmlRootElement(name = "PowerSupply")public class PowerSupply {@XmlElement(name = "ForUseWith")protected String forUseWith;@XmlElement(name = "CameraPowerSupplyType")protected String cameraPowerSupplyType;@XmlElement(name = "BatteryChemicalType")protected String batteryChemicalType;@XmlElement(name = "PowerSupplyAccessories")protected String powerSupplyAccessories;/*** Gets the value of the forUseWith property.** @return* possible object is* {@link String }**/public String getForUseWith() {return forUseWith;}/*** Sets the value of the forUseWith property.** @param value* allowed object is* {@link String }**/public void setForUseWith(String value) {this.forUseWith = value;}/*** Gets the value of the cameraPowerSupplyType property.** @return* possible object is* {@link String }**/public String getCameraPowerSupplyType() {return cameraPowerSupplyType;}/*** Sets the value of the cameraPowerSupplyType property.** @param value* allowed object is* {@link String }**/public void setCameraPowerSupplyType(String value) {this.cameraPowerSupplyType = value;}/*** Gets the value of the batteryChemicalType property.** @return* possible object is* {@link String }**/public String getBatteryChemicalType() {return batteryChemicalType;}/*** Sets the value of the batteryChemicalType property.** @param value* allowed object is* {@link String }**/public void setBatteryChemicalType(String value) {this.batteryChemicalType = value;}/*** Gets the value of the powerSupplyAccessories property.** @return* possible object is* {@link String }**/public String getPowerSupplyAccessories() {return powerSupplyAccessories;}/*** Sets the value of the powerSupplyAccessories property.** @param value* allowed object is* {@link String }**/public void setPowerSupplyAccessories(String value) {this.powerSupplyAccessories = value;}}