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