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