// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.2-b01-fcs // 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: 2010.12.14 at 11:01:05 PM IST // package org.ebayopensource.soaframework.examples.config; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CategorySales complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CategorySales"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="speed" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Name" type="{http://www.ebayopensource.org/soaframework/examples/config}CategoryProduct" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CategorySales", propOrder = { "type", "speed", "name" }) public class CategorySales { protected String type; protected String speed; @XmlElement(name = "Name") protected CategoryProduct name; /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the speed property. * * @return * possible object is * {@link String } * */ public String getSpeed() { return speed; } /** * Sets the value of the speed property. * * @param value * allowed object is * {@link String } * */ public void setSpeed(String value) { this.speed = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link CategoryProduct } * */ public CategoryProduct getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link CategoryProduct } * */ public void setName(CategoryProduct value) { this.name = value; } }