Package org.vfny.geoserver.wfs.requests

Examples of org.vfny.geoserver.wfs.requests.DescribeRequest


            throw new WfsException(
                "illegal request type, expected DescribeRequest, got "
                + request);
        }

        DescribeRequest wfsRequest = (DescribeRequest) request;
        this.request = wfsRequest;
        LOGGER.finer("processing describe request" + wfsRequest);

        String outputFormat = wfsRequest.getOutputFormat();

        if (!outputFormat.equalsIgnoreCase("XMLSCHEMA")) {
            throw new WfsException("output format: " + outputFormat + " not "
                + "supported by geoserver");
        }
View Full Code Here


        return suite;
    }

    public void setUp() {
        baseRequest[0] = new DescribeRequest();
        baseRequest[0].addFeatureType("rail");
        baseRequest[0].setVersion("0.0.15");

        baseRequest[1] = new DescribeRequest();
        baseRequest[1].addFeatureType("rail");
        baseRequest[1].addFeatureType("roads");
        baseRequest[1].setVersion("0.0.15");
    }
View Full Code Here

TOP

Related Classes of org.vfny.geoserver.wfs.requests.DescribeRequest

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.