use of net.opengis.wfs.v_1_1_0.WFSCapabilitiesType in project ddf by codice.
the class WfsSource method configureWfsFeatures.
private void configureWfsFeatures() {
WFSCapabilitiesType capabilities = getCapabilities();
if (capabilities != null) {
wfsVersion = capabilities.getVersion();
List<FeatureTypeType> featureTypes = getFeatureTypes(capabilities);
List<String> supportedSpatialOperators = getSupportedSpatialOperators(capabilities);
List<QName> supportedGeometryOperands = getSupportedGeometryOperators(capabilities);
buildFeatureFilters(featureTypes, supportedSpatialOperators, supportedGeometryOperands);
} else {
LOGGER.info("WfsSource {}: WFS Server did not return any capabilities.", getId());
}
}
Aggregations