Package org.geoserver.w3ds.service

Examples of org.geoserver.w3ds.service.W3DSInfo


    }

    private void handleService() {
      start("ows:ServiceIdentification");
      W3DSInfo w3dsInfo = geoServer.getService("w3ds", W3DSInfo.class);
      element("ows:Title", w3dsInfo.getTitle());
      element("ows:Abstract", w3dsInfo.getAbstract());
      element("ows:ServiceType", "OGC W3DS");
      element("ows:ServiceTypeVersion", "0.4.0");
      element("ows:Fees", w3dsInfo.getFees());
      element("ows:AccessConstraints", w3dsInfo.getAccessConstraints());
      end("ows:ServiceIdentification");
    }
View Full Code Here

TOP

Related Classes of org.geoserver.w3ds.service.W3DSInfo

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.