Revision 26481

View differences:

tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>ows-parsers</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
	</buildSpec>
14
	<natures>
15
		<nature>org.eclipse.jdt.core.javanature</nature>
16
	</natures>
17
</projectDescription>
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/.fatjar
1
#Fat Jar Configuration File
2
#Tue Jan 22 20:47:51 GMT+01:00 2008
3
onejar.license.required=true
4
manifest.classpath=
5
manifest.removesigners=true
6
onejar.checkbox=false
7
jarname=ows-parsers-logex-patched.jar
8
manifest.mergeall=true
9
manifest.mainclass=
10
manifest.file=<createnew>
11
jarname.isextern=false
12
onejar.expand=
13
excludes=<jar|jaxb-api.jar>;<jar|jaxb-impl.jar>;<jar|commons-jaxb-frogs-SNAPSHOT.jar>;<jar|commons-frogs-SNAPSHOT.jar>
14
includes=
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_0_0/ExceptionType.java
1
//
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 09:22:38 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_0_0;
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
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_0_0/package-info.java
1
//
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 09:22:38 AM EDT 
6
//
7

  
8
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.opengeospatial.net/ows", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
9
package net.schema.ows.impl1_0_0;
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_0_0/ExceptionReport.java
1
//
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 09:22:38 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_0_0;
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.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
19
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
20
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21

  
22

  
23
/**
24
 * <p>Java class for anonymous complex type.
25
 * 
26
 * <p>The following schema fragment specifies the expected content contained within this class.
27
 * 
28
 * <pre>
29
 * &lt;complexType>
30
 *   &lt;complexContent>
31
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *       &lt;sequence>
33
 *         &lt;element name="Exception" type="{http://www.opengeospatial.net/ows}ExceptionType" maxOccurs="unbounded"/>
34
 *       &lt;/sequence>
35
 *       &lt;attribute name="language" type="{http://www.w3.org/2001/XMLSchema}language" />
36
 *       &lt;attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
37
 *     &lt;/restriction>
38
 *   &lt;/complexContent>
39
 * &lt;/complexType>
40
 * </pre>
41
 * 
42
 * 
43
 */
44
@XmlAccessorType(XmlAccessType.FIELD)
45
@XmlType(name = "", propOrder = {
46
    "exception"
47
})
48
@XmlRootElement(name = "ExceptionReport")
49
public class ExceptionReport {
50

  
51
    @XmlElement(name = "Exception", required = true)
52
    protected List<ExceptionType> exception;
53
    @XmlAttribute
54
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55
    protected String language;
56
    @XmlAttribute(required = true)
57
    protected String version;
58

  
59
    /**
60
     * Gets the value of the exception property.
61
     * 
62
     * <p>
63
     * This accessor method returns a reference to the live list,
64
     * not a snapshot. Therefore any modification you make to the
65
     * returned list will be present inside the JAXB object.
66
     * This is why there is not a <CODE>set</CODE> method for the exception property.
67
     * 
68
     * <p>
69
     * For example, to add a new item, do as follows:
70
     * <pre>
71
     *    getException().add(newItem);
72
     * </pre>
73
     * 
74
     * 
75
     * <p>
76
     * Objects of the following type(s) are allowed in the list
77
     * {@link ExceptionType }
78
     * 
79
     * 
80
     */
81
    public List<ExceptionType> getException() {
82
        if (exception == null) {
83
            exception = new ArrayList<ExceptionType>();
84
        }
85
        return this.exception;
86
    }
87

  
88
    /**
89
     * Gets the value of the language property.
90
     * 
91
     * @return
92
     *     possible object is
93
     *     {@link String }
94
     *     
95
     */
96
    public String getLanguage() {
97
        return language;
98
    }
99

  
100
    /**
101
     * Sets the value of the language property.
102
     * 
103
     * @param value
104
     *     allowed object is
105
     *     {@link String }
106
     *     
107
     */
108
    public void setLanguage(String value) {
109
        this.language = value;
110
    }
111

  
112
    /**
113
     * Gets the value of the version property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link String }
118
     *     
119
     */
120
    public String getVersion() {
121
        return version;
122
    }
123

  
124
    /**
125
     * Sets the value of the version property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link String }
130
     *     
131
     */
132
    public void setVersion(String value) {
133
        this.version = value;
134
    }
135

  
136
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_0_0/ObjectFactory.java
1
//
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 09:22:38 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_0_0;
10

  
11
import javax.xml.bind.annotation.XmlRegistry;
12

  
13

  
14
/**
15
 * This object contains factory methods for each 
16
 * Java content interface and Java element interface 
17
 * generated in the net.schema.ows.impl1_0_0 package. 
18
 * <p>An ObjectFactory allows you to programatically 
19
 * construct new instances of the Java representation 
20
 * for XML content. The Java representation of XML 
21
 * content can consist of schema derived interfaces 
22
 * and classes representing the binding of schema 
23
 * type definitions, element declarations and model 
24
 * groups.  Factory methods for each of these are 
25
 * provided in this class.
26
 * 
27
 */
28
@XmlRegistry
29
public class ObjectFactory {
30

  
31

  
32
    /**
33
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.schema.ows.impl1_0_0
34
     * 
35
     */
36
    public ObjectFactory() {
37
    }
38

  
39
    /**
40
     * Create an instance of {@link ExceptionType }
41
     * 
42
     */
43
    public ExceptionType createExceptionType() {
44
        return new ExceptionType();
45
    }
46

  
47
    /**
48
     * Create an instance of {@link ExceptionReport }
49
     * 
50
     */
51
    public ExceptionReport createExceptionReport() {
52
        return new ExceptionReport();
53
    }
54

  
55
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_1_0/ExceptionReport.java
1
//
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:18:28 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_1_0;
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.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
19
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
20
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21

  
22

  
23
/**
24
 * <p>Java class for anonymous complex type.
25
 * 
26
 * <p>The following schema fragment specifies the expected content contained within this class.
27
 * 
28
 * <pre>
29
 * &lt;complexType>
30
 *   &lt;complexContent>
31
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *       &lt;sequence>
33
 *         &lt;element ref="{http://www.opengeospatial.net/ows}Exception" maxOccurs="unbounded"/>
34
 *       &lt;/sequence>
35
 *       &lt;attribute name="language" type="{http://www.w3.org/2001/XMLSchema}language" />
36
 *       &lt;attribute name="version" use="required">
37
 *         &lt;simpleType>
38
 *           &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
39
 *             &lt;pattern value="\d+\.\d?\d\.\d?\d"/>
40
 *           &lt;/restriction>
41
 *         &lt;/simpleType>
42
 *       &lt;/attribute>
43
 *     &lt;/restriction>
44
 *   &lt;/complexContent>
45
 * &lt;/complexType>
46
 * </pre>
47
 * 
48
 * 
49
 */
50
@XmlAccessorType(XmlAccessType.FIELD)
51
@XmlType(name = "", propOrder = {
52
    "exception"
53
})
54
@XmlRootElement(name = "ExceptionReport")
55
public class ExceptionReport {
56

  
57
    @XmlElement(name = "Exception", required = true)
58
    protected List<ExceptionType> exception;
59
    @XmlAttribute
60
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
61
    protected String language;
62
    @XmlAttribute(required = true)
63
    protected String version;
64

  
65
    /**
66
     * Unordered list of one or more Exception elements that each describes an error. These Exception elements shall be interpreted by clients as being independent of one another (not hierarchical). Gets the value of the exception property.
67
     * 
68
     * <p>
69
     * This accessor method returns a reference to the live list,
70
     * not a snapshot. Therefore any modification you make to the
71
     * returned list will be present inside the JAXB object.
72
     * This is why there is not a <CODE>set</CODE> method for the exception property.
73
     * 
74
     * <p>
75
     * For example, to add a new item, do as follows:
76
     * <pre>
77
     *    getException().add(newItem);
78
     * </pre>
79
     * 
80
     * 
81
     * <p>
82
     * Objects of the following type(s) are allowed in the list
83
     * {@link ExceptionType }
84
     * 
85
     * 
86
     */
87
    public List<ExceptionType> getException() {
88
        if (exception == null) {
89
            exception = new ArrayList<ExceptionType>();
90
        }
91
        return this.exception;
92
    }
93

  
94
    /**
95
     * Gets the value of the language property.
96
     * 
97
     * @return
98
     *     possible object is
99
     *     {@link String }
100
     *     
101
     */
102
    public String getLanguage() {
103
        return language;
104
    }
105

  
106
    /**
107
     * Sets the value of the language property.
108
     * 
109
     * @param value
110
     *     allowed object is
111
     *     {@link String }
112
     *     
113
     */
114
    public void setLanguage(String value) {
115
        this.language = value;
116
    }
117

  
118
    /**
119
     * Gets the value of the version property.
120
     * 
121
     * @return
122
     *     possible object is
123
     *     {@link String }
124
     *     
125
     */
126
    public String getVersion() {
127
        return version;
128
    }
129

  
130
    /**
131
     * Sets the value of the version property.
132
     * 
133
     * @param value
134
     *     allowed object is
135
     *     {@link String }
136
     *     
137
     */
138
    public void setVersion(String value) {
139
        this.version = value;
140
    }
141

  
142
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_1_0/ObjectFactory.java
1
//
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:18:28 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_1_0;
10

  
11
import javax.xml.bind.JAXBElement;
12
import javax.xml.bind.annotation.XmlElementDecl;
13
import javax.xml.bind.annotation.XmlRegistry;
14
import javax.xml.namespace.QName;
15

  
16

  
17
/**
18
 * This object contains factory methods for each 
19
 * Java content interface and Java element interface 
20
 * generated in the net.schema.ows.impl1_1_0 package. 
21
 * <p>An ObjectFactory allows you to programatically 
22
 * construct new instances of the Java representation 
23
 * for XML content. The Java representation of XML 
24
 * content can consist of schema derived interfaces 
25
 * and classes representing the binding of schema 
26
 * type definitions, element declarations and model 
27
 * groups.  Factory methods for each of these are 
28
 * provided in this class.
29
 * 
30
 */
31
@XmlRegistry
32
public class ObjectFactory {
33

  
34
    private final static QName _Exception_QNAME = new QName("http://www.opengeospatial.net/ows", "Exception");
35

  
36
    /**
37
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.schema.ows.impl1_1_0
38
     * 
39
     */
40
    public ObjectFactory() {
41
    }
42

  
43
    /**
44
     * Create an instance of {@link ExceptionType }
45
     * 
46
     */
47
    public ExceptionType createExceptionType() {
48
        return new ExceptionType();
49
    }
50

  
51
    /**
52
     * Create an instance of {@link ExceptionReport }
53
     * 
54
     */
55
    public ExceptionReport createExceptionReport() {
56
        return new ExceptionReport();
57
    }
58

  
59
    /**
60
     * Create an instance of {@link JAXBElement }{@code <}{@link ExceptionType }{@code >}}
61
     * 
62
     */
63
    @XmlElementDecl(namespace = "http://www.opengeospatial.net/ows", name = "Exception")
64
    public JAXBElement<ExceptionType> createException(ExceptionType value) {
65
        return new JAXBElement<ExceptionType>(_Exception_QNAME, ExceptionType.class, null, value);
66
    }
67

  
68
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_1_0/ExceptionType.java
1
//
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:18:28 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl1_1_0;
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
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl1_1_0/package-info.java
1
//
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:18:28 AM EDT 
6
//
7

  
8
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.opengeospatial.net/ows", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
9
package net.schema.ows.impl1_1_0;
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_0/package-info.java
1
//
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:18:05 AM EDT 
6
//
7

  
8
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.opengis.net/ows", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
9
package net.schema.ows.impl0_3_0;
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_0/ExceptionReport.java
1
//
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:18:05 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl0_3_0;
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.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
19
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
20
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21

  
22

  
23
/**
24
 * <p>Java class for anonymous complex type.
25
 * 
26
 * <p>The following schema fragment specifies the expected content contained within this class.
27
 * 
28
 * <pre>
29
 * &lt;complexType>
30
 *   &lt;complexContent>
31
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *       &lt;sequence>
33
 *         &lt;element name="Exception" type="{http://www.opengis.net/ows}ExceptionType" maxOccurs="unbounded"/>
34
 *       &lt;/sequence>
35
 *       &lt;attribute name="language" type="{http://www.w3.org/2001/XMLSchema}language" />
36
 *       &lt;attribute name="version" use="required" type="{http://www.opengis.net/ows}VersionType" />
37
 *     &lt;/restriction>
38
 *   &lt;/complexContent>
39
 * &lt;/complexType>
40
 * </pre>
41
 * 
42
 * 
43
 */
44
@XmlAccessorType(XmlAccessType.FIELD)
45
@XmlType(name = "", propOrder = {
46
    "exception"
47
})
48
@XmlRootElement(name = "ExceptionReport")
49
public class ExceptionReport {
50

  
51
    @XmlElement(name = "Exception", required = true)
52
    protected List<ExceptionType> exception;
53
    @XmlAttribute
54
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55
    protected String language;
56
    @XmlAttribute(required = true)
57
    protected String version;
58

  
59
    /**
60
     * Gets the value of the exception property.
61
     * 
62
     * <p>
63
     * This accessor method returns a reference to the live list,
64
     * not a snapshot. Therefore any modification you make to the
65
     * returned list will be present inside the JAXB object.
66
     * This is why there is not a <CODE>set</CODE> method for the exception property.
67
     * 
68
     * <p>
69
     * For example, to add a new item, do as follows:
70
     * <pre>
71
     *    getException().add(newItem);
72
     * </pre>
73
     * 
74
     * 
75
     * <p>
76
     * Objects of the following type(s) are allowed in the list
77
     * {@link ExceptionType }
78
     * 
79
     * 
80
     */
81
    public List<ExceptionType> getException() {
82
        if (exception == null) {
83
            exception = new ArrayList<ExceptionType>();
84
        }
85
        return this.exception;
86
    }
87

  
88
    /**
89
     * Gets the value of the language property.
90
     * 
91
     * @return
92
     *     possible object is
93
     *     {@link String }
94
     *     
95
     */
96
    public String getLanguage() {
97
        return language;
98
    }
99

  
100
    /**
101
     * Sets the value of the language property.
102
     * 
103
     * @param value
104
     *     allowed object is
105
     *     {@link String }
106
     *     
107
     */
108
    public void setLanguage(String value) {
109
        this.language = value;
110
    }
111

  
112
    /**
113
     * Gets the value of the version property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link String }
118
     *     
119
     */
120
    public String getVersion() {
121
        return version;
122
    }
123

  
124
    /**
125
     * Sets the value of the version property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link String }
130
     *     
131
     */
132
    public void setVersion(String value) {
133
        this.version = value;
134
    }
135

  
136
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_0/ObjectFactory.java
1
//
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:18:05 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl0_3_0;
10

  
11
import javax.xml.bind.annotation.XmlRegistry;
12

  
13

  
14
/**
15
 * This object contains factory methods for each 
16
 * Java content interface and Java element interface 
17
 * generated in the net.schema.ows.impl0_3_0 package. 
18
 * <p>An ObjectFactory allows you to programatically 
19
 * construct new instances of the Java representation 
20
 * for XML content. The Java representation of XML 
21
 * content can consist of schema derived interfaces 
22
 * and classes representing the binding of schema 
23
 * type definitions, element declarations and model 
24
 * groups.  Factory methods for each of these are 
25
 * provided in this class.
26
 * 
27
 */
28
@XmlRegistry
29
public class ObjectFactory {
30

  
31

  
32
    /**
33
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.schema.ows.impl0_3_0
34
     * 
35
     */
36
    public ObjectFactory() {
37
    }
38

  
39
    /**
40
     * Create an instance of {@link ExceptionType }
41
     * 
42
     */
43
    public ExceptionType createExceptionType() {
44
        return new ExceptionType();
45
    }
46

  
47
    /**
48
     * Create an instance of {@link ExceptionReport }
49
     * 
50
     */
51
    public ExceptionReport createExceptionReport() {
52
        return new ExceptionReport();
53
    }
54

  
55
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_0/ExceptionType.java
1
//
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:18:05 AM EDT 
6
//
7

  
8

  
9
package net.schema.ows.impl0_3_0;
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
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_20/ExceptionReport.java
1
//
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.XmlRootElement;
18
import javax.xml.bind.annotation.XmlType;
19
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
20
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
21

  
22

  
23
/**
24
 * <p>Java class for anonymous complex type.
25
 * 
26
 * <p>The following schema fragment specifies the expected content contained within this class.
27
 * 
28
 * <pre>
29
 * &lt;complexType>
30
 *   &lt;complexContent>
31
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
32
 *       &lt;sequence>
33
 *         &lt;element name="Exception" type="{http://www.opengis.net/ows}ExceptionType" maxOccurs="unbounded"/>
34
 *       &lt;/sequence>
35
 *       &lt;attribute name="language" type="{http://www.w3.org/2001/XMLSchema}language" />
36
 *       &lt;attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
37
 *     &lt;/restriction>
38
 *   &lt;/complexContent>
39
 * &lt;/complexType>
40
 * </pre>
41
 * 
42
 * 
43
 */
44
@XmlAccessorType(XmlAccessType.FIELD)
45
@XmlType(name = "", propOrder = {
46
    "exception"
47
})
48
@XmlRootElement(name = "ExceptionReport")
49
public class ExceptionReport {
50

  
51
    @XmlElement(name = "Exception", required = true)
52
    protected List<ExceptionType> exception;
53
    @XmlAttribute
54
    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
55
    protected String language;
56
    @XmlAttribute(required = true)
57
    protected String version;
58

  
59
    /**
60
     * Gets the value of the exception property.
61
     * 
62
     * <p>
63
     * This accessor method returns a reference to the live list,
64
     * not a snapshot. Therefore any modification you make to the
65
     * returned list will be present inside the JAXB object.
66
     * This is why there is not a <CODE>set</CODE> method for the exception property.
67
     * 
68
     * <p>
69
     * For example, to add a new item, do as follows:
70
     * <pre>
71
     *    getException().add(newItem);
72
     * </pre>
73
     * 
74
     * 
75
     * <p>
76
     * Objects of the following type(s) are allowed in the list
77
     * {@link ExceptionType }
78
     * 
79
     * 
80
     */
81
    public List<ExceptionType> getException() {
82
        if (exception == null) {
83
            exception = new ArrayList<ExceptionType>();
84
        }
85
        return this.exception;
86
    }
87

  
88
    /**
89
     * Gets the value of the language property.
90
     * 
91
     * @return
92
     *     possible object is
93
     *     {@link String }
94
     *     
95
     */
96
    public String getLanguage() {
97
        return language;
98
    }
99

  
100
    /**
101
     * Sets the value of the language property.
102
     * 
103
     * @param value
104
     *     allowed object is
105
     *     {@link String }
106
     *     
107
     */
108
    public void setLanguage(String value) {
109
        this.language = value;
110
    }
111

  
112
    /**
113
     * Gets the value of the version property.
114
     * 
115
     * @return
116
     *     possible object is
117
     *     {@link String }
118
     *     
119
     */
120
    public String getVersion() {
121
        return version;
122
    }
123

  
124
    /**
125
     * Sets the value of the version property.
126
     * 
127
     * @param value
128
     *     allowed object is
129
     *     {@link String }
130
     *     
131
     */
132
    public void setVersion(String value) {
133
        this.version = value;
134
    }
135

  
136
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_20/ObjectFactory.java
1
//
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 javax.xml.bind.annotation.XmlRegistry;
12

  
13

  
14
/**
15
 * This object contains factory methods for each 
16
 * Java content interface and Java element interface 
17
 * generated in the net.schema.ows.impl0_3_20 package. 
18
 * <p>An ObjectFactory allows you to programatically 
19
 * construct new instances of the Java representation 
20
 * for XML content. The Java representation of XML 
21
 * content can consist of schema derived interfaces 
22
 * and classes representing the binding of schema 
23
 * type definitions, element declarations and model 
24
 * groups.  Factory methods for each of these are 
25
 * provided in this class.
26
 * 
27
 */
28
@XmlRegistry
29
public class ObjectFactory {
30

  
31

  
32
    /**
33
     * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: net.schema.ows.impl0_3_20
34
     * 
35
     */
36
    public ObjectFactory() {
37
    }
38

  
39
    /**
40
     * Create an instance of {@link ExceptionType }
41
     * 
42
     */
43
    public ExceptionType createExceptionType() {
44
        return new ExceptionType();
45
    }
46

  
47
    /**
48
     * Create an instance of {@link ExceptionReport }
49
     * 
50
     */
51
    public ExceptionReport createExceptionReport() {
52
        return new ExceptionReport();
53
    }
54

  
55
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_20/ExceptionType.java
1
//
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
}
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/net/schema/ows/impl0_3_20/package-info.java
1
//
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
@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.opengis.net/ows", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
9
package net.schema.ows.impl0_3_20;
tmp/trunk/servidor/WorkSpace_Servidor/ows-parsers/src/org/tigris/frogs/parser/ows/impl1_0_0/OWSXmlParser.java
1
/*
2
 * ============================================================================
3
 * Copyright 2006 Government of Canada
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at
8
 *
9
 *     http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff