Skip to content

Commit

Permalink
WFS3 work on collections
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime committed May 10, 2018
1 parent 75c7639 commit 2820791
Show file tree
Hide file tree
Showing 34 changed files with 1,066 additions and 360 deletions.
11 changes: 11 additions & 0 deletions src/community/wfs3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@
<artifactId>jackson-dataformat-yaml</artifactId>
<version>${jackson2.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>${jackson2.version}</version>
</dependency>
<dependency>
<!-- this is added to avoid https://github.com/FasterXML/jackson-dataformat-xml/issues/32 -->
<groupId>org.codehaus.woodstox</groupId>
<artifactId>woodstox-core-asl</artifactId>
<version>4.1.2</version>
</dependency>

<dependency>
<groupId>org.geoserver</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public abstract class BaseRequest {

public static final String JSON_MIME = "application/json";
public static final String YAML_MIME = "application/x-yaml";
public static final String XML_MIME = "text/xml";
public static final String HTML_MIME = "text/html";

String format;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* (c) 2018 Open Source Geospatial Foundation - all rights reserved
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.wfs3;

/**
* Request for the server contents
*/
public class CollectionRequest extends BaseRequest {


}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* (c) 2018 Open Source Geospatial Foundation - all rights reserved
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.wfs3;

import org.geotools.xml.xsi.XSISimpleTypes;

import javax.xml.namespace.QName;

/**
* Request for the server contents
*/
public class CollectionsRequest extends BaseRequest {

QName typeName;

public QName getTypeName() {
return typeName;
}

public void setTypeName(QName typeName) {
this.typeName = typeName;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/* (c) 2018 Open Source Geospatial Foundation - all rights reserved
* This code is licensed under the GPL 2.0 license, available at the root
* application directory.
*/
package org.geoserver.wfs3;

/** Request for the server conformance status */
public class ConformanceRequest extends BaseRequest {}

This file was deleted.

0 comments on commit 2820791

Please sign in to comment.