Statistics
| Revision:

svn-gvsig-desktop / tmp / trunk / servidor / WorkSpace_Servidor / src / net / schema / ows / impl0_3_20 / ExceptionType.java @ 26474

History | View | Annotate | Download (3.72 KB)

1 26474 kike
//
2
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-20060719-fcs
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: 2006.08.01 at 08:15:26 AM EDT
6
//
7
8
9
package net.schema.ows.impl0_3_20;
10
11
import java.util.ArrayList;
12
import java.util.List;
13
import javax.xml.bind.annotation.XmlAccessType;
14
import javax.xml.bind.annotation.XmlAccessorType;
15
import javax.xml.bind.annotation.XmlAttribute;
16
import javax.xml.bind.annotation.XmlElement;
17
import javax.xml.bind.annotation.XmlType;
18
19
20
/**
21
 * An Exception element describes one detected error that a server chooses to convey to the client.
22
 *
23
 * <p>Java class for ExceptionType complex type.
24
 *
25
 * <p>The following schema fragment specifies the expected content contained within this class.
26
 *
27
 * <pre>
28
 * &lt;complexType name="ExceptionType">
29
 *   &lt;complexContent>
30
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
31
 *       &lt;sequence>
32
 *         &lt;element name="ExceptionText" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
33
 *       &lt;/sequence>
34
 *       &lt;attribute name="exceptionCode" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
35
 *       &lt;attribute name="locator" type="{http://www.w3.org/2001/XMLSchema}string" />
36
 *     &lt;/restriction>
37
 *   &lt;/complexContent>
38
 * &lt;/complexType>
39
 * </pre>
40
 *
41
 *
42
 */
43
@XmlAccessorType(XmlAccessType.FIELD)
44
@XmlType(name = "ExceptionType", propOrder = {
45
    "exceptionText"
46
})
47
public class ExceptionType {
48
49
    @XmlElement(name = "ExceptionText")
50
    protected List<String> exceptionText;
51
    @XmlAttribute(required = true)
52
    protected String exceptionCode;
53
    @XmlAttribute
54
    protected String locator;
55
56
    /**
57
     * Gets the value of the exceptionText property.
58
     *
59
     * <p>
60
     * This accessor method returns a reference to the live list,
61
     * not a snapshot. Therefore any modification you make to the
62
     * returned list will be present inside the JAXB object.
63
     * This is why there is not a <CODE>set</CODE> method for the exceptionText property.
64
     *
65
     * <p>
66
     * For example, to add a new item, do as follows:
67
     * <pre>
68
     *    getExceptionText().add(newItem);
69
     * </pre>
70
     *
71
     *
72
     * <p>
73
     * Objects of the following type(s) are allowed in the list
74
     * {@link String }
75
     *
76
     *
77
     */
78
    public List<String> getExceptionText() {
79
        if (exceptionText == null) {
80
            exceptionText = new ArrayList<String>();
81
        }
82
        return this.exceptionText;
83
    }
84
85
    /**
86
     * Gets the value of the exceptionCode property.
87
     *
88
     * @return
89
     *     possible object is
90
     *     {@link String }
91
     *
92
     */
93
    public String getExceptionCode() {
94
        return exceptionCode;
95
    }
96
97
    /**
98
     * Sets the value of the exceptionCode property.
99
     *
100
     * @param value
101
     *     allowed object is
102
     *     {@link String }
103
     *
104
     */
105
    public void setExceptionCode(String value) {
106
        this.exceptionCode = value;
107
    }
108
109
    /**
110
     * Gets the value of the locator property.
111
     *
112
     * @return
113
     *     possible object is
114
     *     {@link String }
115
     *
116
     */
117
    public String getLocator() {
118
        return locator;
119
    }
120
121
    /**
122
     * Sets the value of the locator property.
123
     *
124
     * @param value
125
     *     allowed object is
126
     *     {@link String }
127
     *
128
     */
129
    public void setLocator(String value) {
130
        this.locator = value;
131
    }
132
133
}