Package org.geotools.xml.filter

Examples of org.geotools.xml.filter.FilterCompliancePreProcessor


        if (null == complianceLevel) {
            complianceLevel = XMLHandlerHints.VALUE_FILTER_COMPLIANCE_HIGH;
        }
        // TODO: modify FilterCompliancePreProcessor so that it preservers original FeatureID
        // instead re creating them from the FeautreId.getID()
        FilterCompliancePreProcessor compliancePreProcessor = new FilterCompliancePreProcessor(
                complianceLevel);
        filter.accept(compliancePreProcessor, null);

        filter = compliancePreProcessor.getFilter();
        Id fidFilter = compliancePreProcessor.getFidFilter();
        if (!fidFilter.getIdentifiers().isEmpty()) {
            server = fidFilter;
            post = Filter.EXCLUDE.equals(filter) ? Filter.INCLUDE : filter;
        } else {
View Full Code Here

TOP

Related Classes of org.geotools.xml.filter.FilterCompliancePreProcessor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.