Package org.geoserver.wfs

Examples of org.geoserver.wfs.DescribeFeatureType


        return (VersionedFeatureCollectionType) getFeature.run(request);
    }
   
    public FeatureTypeInfo[] describeFeatureType(net.opengis.wfs.DescribeFeatureTypeType request) {
        return new DescribeFeatureType(wfs, catalog).run(request);
    }
View Full Code Here


    public FeatureTypeInfo[] describeFeatureType(net.opengis.wfs.DescribeFeatureTypeType request) {
        return new DescribeFeatureType(wfs, catalog).run(request);
    }
   
    public VersionedDescribeResults describeVersionedFeatureType(DescribeVersionedFeatureTypeType request) {
        FeatureTypeInfo[] infos = new DescribeFeatureType(wfs, catalog).run(request);
        return new VersionedDescribeResults(infos, request.isVersioned());
    }
View Full Code Here

            //TODO: should this be run through the url mangler? not sure since the uri should
            // already be "proxified"
            request.setBaseUrl(uri.scheme() + "://" + uri.host() + ":" + uri.port() + uri.path());

            //dispatch the dft operation
            DescribeFeatureType dft =
                new DescribeFeatureType(geoServer.getService(WFSInfo.class), catalog);
            FeatureTypeInfo[] featureTypes = dft.run(request);

            //generate the response
            XmlSchemaEncoder schemaEncoder = null;
            switch(ver) {
            case V_10:
View Full Code Here

TOP

Related Classes of org.geoserver.wfs.DescribeFeatureType

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.