Subversion Repositories XServices

Rev

Rev 129 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
125 brianR 1
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.2-147
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: 2012.11.14 at 07:35:52 AM MEZ
6
//
7
 
8
 
9
package net.brutex.xservices.types.scm;
10
 
11
import java.io.Serializable;
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.XmlType;
16
 
17
 
18
/**
19
 * <p>Java class for ModuleType complex type.
20
 *
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 *
23
 * <pre>
24
 * &lt;complexType name="ModuleType">
25
 *   &lt;complexContent>
26
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
27
 *       &lt;sequence>
28
 *         &lt;element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
29
 *         &lt;element name="status" type="{http://www.w3.org/2001/XMLSchema}string"/>
30
 *         &lt;element name="path" type="{http://www.w3.org/2001/XMLSchema}string"/>
31
 *         &lt;element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
32
 *       &lt;/sequence>
33
 *     &lt;/restriction>
34
 *   &lt;/complexContent>
35
 * &lt;/complexType>
36
 * </pre>
37
 *
38
 *
39
 */
40
@XmlAccessorType(XmlAccessType.FIELD)
41
@XmlType(name = "ModuleType", propOrder = {
42
    "name",
43
    "status",
44
    "path",
45
    "type"
46
})
47
public class ModuleType
48
    implements Serializable
49
{
50
 
51
    private final static long serialVersionUID = 19800606L;
52
    @XmlElement(required = true)
53
    protected String name;
54
    @XmlElement(required = true)
55
    protected String status;
56
    @XmlElement(required = true)
57
    protected String path;
58
    @XmlElement(required = true)
59
    protected String type;
60
 
61
    /**
62
     * Gets the value of the name property.
63
     *
64
     * @return
65
     *     possible object is
66
     *     {@link String }
67
     *
68
     */
69
    public String getName() {
70
        return name;
71
    }
72
 
73
    /**
74
     * Sets the value of the name property.
75
     *
76
     * @param value
77
     *     allowed object is
78
     *     {@link String }
79
     *
80
     */
81
    public void setName(String value) {
82
        this.name = value;
83
    }
84
 
85
    /**
86
     * Gets the value of the status property.
87
     *
88
     * @return
89
     *     possible object is
90
     *     {@link String }
91
     *
92
     */
93
    public String getStatus() {
94
        return status;
95
    }
96
 
97
    /**
98
     * Sets the value of the status property.
99
     *
100
     * @param value
101
     *     allowed object is
102
     *     {@link String }
103
     *
104
     */
105
    public void setStatus(String value) {
106
        this.status = value;
107
    }
108
 
109
    /**
110
     * Gets the value of the path property.
111
     *
112
     * @return
113
     *     possible object is
114
     *     {@link String }
115
     *
116
     */
117
    public String getPath() {
118
        return path;
119
    }
120
 
121
    /**
122
     * Sets the value of the path property.
123
     *
124
     * @param value
125
     *     allowed object is
126
     *     {@link String }
127
     *
128
     */
129
    public void setPath(String value) {
130
        this.path = value;
131
    }
132
 
133
    /**
134
     * Gets the value of the type property.
135
     *
136
     * @return
137
     *     possible object is
138
     *     {@link String }
139
     *
140
     */
141
    public String getType() {
142
        return type;
143
    }
144
 
145
    /**
146
     * Sets the value of the type property.
147
     *
148
     * @param value
149
     *     allowed object is
150
     *     {@link String }
151
     *
152
     */
153
    public void setType(String value) {
154
        this.type = value;
155
    }
156
 
157
}