Package org.geoserver.wfs

Examples of org.geoserver.wfs.GetFeature


     *
     * @throws WFSException Any service exceptions.
     */
    public FeatureCollectionType getFeature(GetFeatureType request)
        throws WFSException {
        GetFeature getFeature = new GetFeature(wfs, catalog);
        getFeature.setFilterFactory(filterFactory);

        return getFeature.run(request);
    }
View Full Code Here


   public GeoPackageProcess(GeoServer geoServer, GeoPackageGetMapOutputFormat mapOutput, WPSStorageCleaner storage, FilterFactory2 filterFactory) {
       this.storage = storage;
       this.mapOutput = mapOutput;
       this.filterFactory = filterFactory;
       catalog = geoServer.getCatalog();
       getFeatureDelegate = new GetFeature(geoServer.getService(WFSInfo.class), catalog);
       getFeatureDelegate.setFilterFactory(filterFactory);
   }
View Full Code Here

TOP

Related Classes of org.geoserver.wfs.GetFeature

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.