Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7480 vikram.rag 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 
3
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4
// Any modifications to this file will be lost upon recompilation of the source schema. 
5
// Generated on: 2013.03.04 at 03:49:29 PM IST 
6
//
7
 
8
 
9
package in.shop2020.feeds.products;
10
 
11
import javax.xml.bind.annotation.XmlAccessType;
12
import javax.xml.bind.annotation.XmlAccessorType;
13
import javax.xml.bind.annotation.XmlElement;
14
import javax.xml.bind.annotation.XmlRootElement;
15
import javax.xml.bind.annotation.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for anonymous complex type.
20
 * 
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 * 
23
 * <pre>
24
 * &lt;complexType>
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="CleanerType" minOccurs="0">
29
 *           &lt;simpleType>
30
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
31
 *               &lt;enumeration value="brushes"/>
32
 *               &lt;enumeration value="cloths"/>
33
 *               &lt;enumeration value="cleaning-kits"/>
34
 *               &lt;enumeration value="compressed-air"/>
35
 *               &lt;enumeration value="liquid-cleaners"/>
36
 *               &lt;enumeration value="refills"/>
37
 *             &lt;/restriction>
38
 *           &lt;/simpleType>
39
 *         &lt;/element>
40
 *       &lt;/sequence>
41
 *     &lt;/restriction>
42
 *   &lt;/complexContent>
43
 * &lt;/complexType>
44
 * </pre>
45
 * 
46
 * 
47
 */
48
@XmlAccessorType(XmlAccessType.FIELD)
49
@XmlType(name = "", propOrder = {
50
    "cleanerType"
51
})
52
@XmlRootElement(name = "Cleaner")
53
public class Cleaner {
54
 
55
    @XmlElement(name = "CleanerType")
56
    protected String cleanerType;
57
 
58
    /**
59
     * Gets the value of the cleanerType property.
60
     * 
61
     * @return
62
     *     possible object is
63
     *     {@link String }
64
     *     
65
     */
66
    public String getCleanerType() {
67
        return cleanerType;
68
    }
69
 
70
    /**
71
     * Sets the value of the cleanerType property.
72
     * 
73
     * @param value
74
     *     allowed object is
75
     *     {@link String }
76
     *     
77
     */
78
    public void setCleanerType(String value) {
79
        this.cleanerType = value;
80
    }
81
 
82
}