Skip to content

Commit

Permalink
Merge pull request #50 from groldan/plugin/missing_ops
Browse files Browse the repository at this point in the history
plugin: Add missing known WFS operation names
  • Loading branch information
groldan authored Mar 5, 2024
2 parents 29bdc81 + 8083a13 commit bf5f9cb
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ protected static AccessManagerConfigProvider configProvider() {
return context.getBean(AccessManagerConfigProvider.class);
}

protected static Map<String, List<String>> KNOWN_SERVICES =
protected static final Map<String, List<String>> KNOWN_SERVICES =
Map.of(
"WMS",
List.of(
Expand All @@ -305,7 +305,16 @@ protected static AccessManagerConfigProvider configProvider() {
"DescribeFeatureType",
"LockFeature",
"GetFeatureWithLock",
"Transaction"),
"Transaction",
// WFS 1.1 additional operations:
"GetGMLObject",
// WFS 2.0 additional operations:
"GetPropertyValue",
"GetFeatureWithLock",
"CreateStoredQuery",
"DropStoredQuery",
"ListStoredQueries",
"DescribeStoredQueries"),
"WCS",
List.of("GetCapabilities", "GetCoverage", "DescribeCoverage"),
"WPS",
Expand Down

0 comments on commit bf5f9cb

Please sign in to comment.