// // 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.15 at 12:39:29 AM 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 CategoryInformation complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="CategoryInformation"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="Specifications" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="Name" type="{http://www.ebayopensource.org/soaframework/examples/config}ProductName" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CategoryInformation", propOrder = { "specifications", "name" }) public class CategoryInformation { @XmlElement(name = "Specifications") protected String specifications; @XmlElement(name = "Name") protected ProductName name; /** * Gets the value of the specifications property. * * @return * possible object is * {@link String } * */ public String getSpecifications() { return specifications; } /** * Sets the value of the specifications property. * * @param value * allowed object is * {@link String } * */ public void setSpecifications(String value) { this.specifications = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link ProductName } * */ public ProductName getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link ProductName } * */ public void setName(ProductName value) { this.name = value; } }