Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
7487 kshitij.so 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:57:00 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
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
 
19
 
20
/**
21
 * <p>Java class for anonymous complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType>
27
 *   &lt;complexContent>
28
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
29
 *       &lt;sequence>
30
 *         &lt;element name="IsRecalled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
31
 *         &lt;element name="RecallDescription">
32
 *           &lt;simpleType>
33
 *             &lt;restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString">
34
 *               &lt;maxLength value="1500"/>
35
 *             &lt;/restriction>
36
 *           &lt;/simpleType>
37
 *         &lt;/element>
38
 *       &lt;/sequence>
39
 *     &lt;/restriction>
40
 *   &lt;/complexContent>
41
 * &lt;/complexType>
42
 * </pre>
43
 * 
44
 * 
45
 */
46
@XmlAccessorType(XmlAccessType.FIELD)
47
@XmlType(name = "", propOrder = {
48
    "isRecalled",
49
    "recallDescription"
50
})
51
@XmlRootElement(name = "Recall")
52
public class Recall {
53
 
54
    @XmlElement(name = "IsRecalled")
55
    protected boolean isRecalled;
56
    @XmlElement(name = "RecallDescription", required = true)
57
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
58
    protected String recallDescription;
59
 
60
    /**
61
     * Gets the value of the isRecalled property.
62
     * 
63
     */
64
    public boolean isIsRecalled() {
65
        return isRecalled;
66
    }
67
 
68
    /**
69
     * Sets the value of the isRecalled property.
70
     * 
71
     */
72
    public void setIsRecalled(boolean value) {
73
        this.isRecalled = value;
74
    }
75
 
76
    /**
77
     * Gets the value of the recallDescription property.
78
     * 
79
     * @return
80
     *     possible object is
81
     *     {@link String }
82
     *     
83
     */
84
    public String getRecallDescription() {
85
        return recallDescription;
86
    }
87
 
88
    /**
89
     * Sets the value of the recallDescription property.
90
     * 
91
     * @param value
92
     *     allowed object is
93
     *     {@link String }
94
     *     
95
     */
96
    public void setRecallDescription(String value) {
97
        this.recallDescription = value;
98
    }
99
 
100
}