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.BigDecimal;import java.util.ArrayList;import java.util.List;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 ref="{}VariationData" minOccurs="0"/>* <element ref="{}CheckpointTSAFriendly" minOccurs="0"/>* <element ref="{}CompatibleDeviceSize" minOccurs="0"/>* <element ref="{}CompatibleDeviceFormFactor" maxOccurs="6" minOccurs="0"/>* <element ref="{}HandOrientation" minOccurs="0"/>* <element ref="{}HolderCapacity" minOccurs="0"/>* <element ref="{}MaterialType" minOccurs="0"/>* <element ref="{}ModelNumber" minOccurs="0"/>* </sequence>* </restriction>* </complexContent>* </complexType>* </pre>***/@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "", propOrder = {"variationData","checkpointTSAFriendly","compatibleDeviceSize","compatibleDeviceFormFactor","handOrientation","holderCapacity","materialType","modelNumber"})@XmlRootElement(name = "CarryingCaseOrBag")public class CarryingCaseOrBag {@XmlElement(name = "VariationData")protected VariationData variationData;@XmlElement(name = "CheckpointTSAFriendly")protected String checkpointTSAFriendly;@XmlElement(name = "CompatibleDeviceSize")protected BigDecimal compatibleDeviceSize;@XmlElement(name = "CompatibleDeviceFormFactor")protected List<String> compatibleDeviceFormFactor;@XmlElement(name = "HandOrientation")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String handOrientation;@XmlElement(name = "HolderCapacity")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String holderCapacity;@XmlElement(name = "MaterialType")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String materialType;@XmlElement(name = "ModelNumber")@XmlJavaTypeAdapter(NormalizedStringAdapter.class)protected String modelNumber;/*** Gets the value of the variationData property.** @return* possible object is* {@link VariationData }**/public VariationData getVariationData() {return variationData;}/*** Sets the value of the variationData property.** @param value* allowed object is* {@link VariationData }**/public void setVariationData(VariationData value) {this.variationData = value;}/*** Gets the value of the checkpointTSAFriendly property.** @return* possible object is* {@link String }**/public String getCheckpointTSAFriendly() {return checkpointTSAFriendly;}/*** Sets the value of the checkpointTSAFriendly property.** @param value* allowed object is* {@link String }**/public void setCheckpointTSAFriendly(String value) {this.checkpointTSAFriendly = value;}/*** Gets the value of the compatibleDeviceSize property.** @return* possible object is* {@link BigDecimal }**/public BigDecimal getCompatibleDeviceSize() {return compatibleDeviceSize;}/*** Sets the value of the compatibleDeviceSize property.** @param value* allowed object is* {@link BigDecimal }**/public void setCompatibleDeviceSize(BigDecimal value) {this.compatibleDeviceSize = value;}/*** Gets the value of the compatibleDeviceFormFactor property.** <p>* This accessor method returns a reference to the live list,* not a snapshot. Therefore any modification you make to the* returned list will be present inside the JAXB object.* This is why there is not a <CODE>set</CODE> method for the compatibleDeviceFormFactor property.** <p>* For example, to add a new item, do as follows:* <pre>* getCompatibleDeviceFormFactor().add(newItem);* </pre>*** <p>* Objects of the following type(s) are allowed in the list* {@link String }***/public List<String> getCompatibleDeviceFormFactor() {if (compatibleDeviceFormFactor == null) {compatibleDeviceFormFactor = new ArrayList<String>();}return this.compatibleDeviceFormFactor;}/*** Gets the value of the handOrientation property.** @return* possible object is* {@link String }**/public String getHandOrientation() {return handOrientation;}/*** Sets the value of the handOrientation property.** @param value* allowed object is* {@link String }**/public void setHandOrientation(String value) {this.handOrientation = value;}/*** Gets the value of the holderCapacity property.** @return* possible object is* {@link String }**/public String getHolderCapacity() {return holderCapacity;}/*** Sets the value of the holderCapacity property.** @param value* allowed object is* {@link String }**/public void setHolderCapacity(String value) {this.holderCapacity = value;}/*** Gets the value of the materialType property.** @return* possible object is* {@link String }**/public String getMaterialType() {return materialType;}/*** Sets the value of the materialType property.** @param value* allowed object is* {@link String }**/public void setMaterialType(String value) {this.materialType = value;}/*** Gets the value of the modelNumber property.** @return* possible object is* {@link String }**/public String getModelNumber() {return modelNumber;}/*** Sets the value of the modelNumber property.** @param value* allowed object is* {@link String }**/public void setModelNumber(String value) {this.modelNumber = value;}}