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