Package com.moesol.geoserver.sync.format

Examples of com.moesol.geoserver.sync.format.FeatureCollectionSha1Sync


      respFeatureCollection.setFeatureCollection((FeatureCollection<?, ?>)serverResp.getFeature().get(0));
      return respFeatureCollection;
    }
    if (m_outputFormat.equals("SyncChecksum")) {
      ByteArrayOutputStream output = new ByteArrayOutputStream();
      FeatureCollectionSha1Sync sha1Sync = new FeatureCollectionSha1Sync(output);
      sha1Sync.parseAttributesToInclude(m_atts);
      sha1Sync.parseSha1SyncJson(m_json);
      sha1Sync.write(FeatureCollectionResponse.adapt(m_server));
     
      ByteArrayInputStream bais = new ByteArrayInputStream(output.toByteArray());
      TestResponse response = new TestResponse();
      response.setResponseCode(200);
      response.setResponseMessage("OK");
View Full Code Here

TOP

Related Classes of com.moesol.geoserver.sync.format.FeatureCollectionSha1Sync

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.