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 AttributeType complex type.
20
 *
21
 * <p>The following schema fragment specifies the expected content contained within this class.
22
 *
23
 * <pre>
24
 * &lt;complexType name="AttributeType">
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="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
30
 *       &lt;/sequence>
31
 *     &lt;/restriction>
32
 *   &lt;/complexContent>
33
 * &lt;/complexType>
34
 * </pre>
35
 *
36
 *
37
 */
38
@XmlAccessorType(XmlAccessType.FIELD)
39
@XmlType(name = "AttributeType", propOrder = {
40
    "name",
41
    "value"
42
})
43
public class AttributeType
44
    implements Serializable
45
{
46
 
47
    private final static long serialVersionUID = 19800606L;
48
    @XmlElement(required = true)
49
    protected String name;
50
    @XmlElement(required = true)
51
    protected String value;
52
 
53
    /**
54
     * Gets the value of the name property.
55
     *
56
     * @return
57
     *     possible object is
58
     *     {@link String }
59
     *
60
     */
61
    public String getName() {
62
        return name;
63
    }
64
 
65
    /**
66
     * Sets the value of the name property.
67
     *
68
     * @param value
69
     *     allowed object is
70
     *     {@link String }
71
     *
72
     */
73
    public void setName(String value) {
74
        this.name = value;
75
    }
76
 
77
    /**
78
     * Gets the value of the value property.
79
     *
80
     * @return
81
     *     possible object is
82
     *     {@link String }
83
     *
84
     */
85
    public String getValue() {
86
        return value;
87
    }
88
 
89
    /**
90
     * Sets the value of the value property.
91
     *
92
     * @param value
93
     *     allowed object is
94
     *     {@link String }
95
     *
96
     */
97
    public void setValue(String value) {
98
        this.value = value;
99
    }
100
 
101
}