Package org.geoserver.ows.util

Examples of org.geoserver.ows.util.NumericKvpParser


    public Object read(Object request, Map kvp, Map rawKvp) throws Exception {
        //hack but startIndex conflicts with WMS startIndex... which parses to different type, so
        // we just parse manually
        if (rawKvp.containsKey("startIndex")) {
            kvp.put("startIndex",
                new NumericKvpParser(null, BigInteger.class).parse((String)rawKvp.get("startIndex")));
        }
       
        request = super.read(request, kvp, rawKvp);
       
        //get feature has some additional parsing requirements
View Full Code Here

TOP

Related Classes of org.geoserver.ows.util.NumericKvpParser

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.