use of ogc.schema.opengis.wfs_capabilities.v_1_0_0.FeatureTypeType in project ddf by codice.
the class WfsSource method configureWfsFeatures.
private void configureWfsFeatures() throws SecurityServiceException {
WFSCapabilitiesType capabilities = getCapabilities();
if (capabilities != null) {
wfsVersion = capabilities.getVersion();
List<FeatureTypeType> featureTypes = getFeatureTypes(capabilities);
buildFeatureFilters(featureTypes, capabilities.getFilterCapabilities());
} else {
LOGGER.debug("WfsSource {}: WFS Server did not return any capabilities.", getId());
}
}
Aggregations