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.XmlAttribute;
14
import javax.xml.bind.annotation.XmlType;
15
import javax.xml.bind.annotation.XmlValue;
16
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
17
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
18
 
19
 
20
/**
21
 * <p>Java class for LoyaltyCustomAttribute complex type.
22
 * 
23
 * <p>The following schema fragment specifies the expected content contained within this class.
24
 * 
25
 * <pre>
26
 * &lt;complexType name="LoyaltyCustomAttribute">
27
 *   &lt;simpleContent>
28
 *     &lt;extension base="&lt;>String">
29
 *       &lt;attribute name="attributeName" type="{}String" />
30
 *     &lt;/extension>
31
 *   &lt;/simpleContent>
32
 * &lt;/complexType>
33
 * </pre>
34
 * 
35
 * 
36
 */
37
@XmlAccessorType(XmlAccessType.FIELD)
38
@XmlType(name = "LoyaltyCustomAttribute", propOrder = {
39
    "value"
40
})
41
public class LoyaltyCustomAttribute {
42
 
43
    @XmlValue
44
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
45
    protected String value;
46
    @XmlAttribute
47
    @XmlJavaTypeAdapter(NormalizedStringAdapter.class)
48
    protected String attributeName;
49
 
50
    /**
51
     * Gets the value of the value property.
52
     * 
53
     * @return
54
     *     possible object is
55
     *     {@link String }
56
     *     
57
     */
58
    public String getValue() {
59
        return value;
60
    }
61
 
62
    /**
63
     * Sets the value of the value property.
64
     * 
65
     * @param value
66
     *     allowed object is
67
     *     {@link String }
68
     *     
69
     */
70
    public void setValue(String value) {
71
        this.value = value;
72
    }
73
 
74
    /**
75
     * Gets the value of the attributeName property.
76
     * 
77
     * @return
78
     *     possible object is
79
     *     {@link String }
80
     *     
81
     */
82
    public String getAttributeName() {
83
        return attributeName;
84
    }
85
 
86
    /**
87
     * Sets the value of the attributeName property.
88
     * 
89
     * @param value
90
     *     allowed object is
91
     *     {@link String }
92
     *     
93
     */
94
    public void setAttributeName(String value) {
95
        this.attributeName = value;
96
    }
97
 
98
}