Package org.geoserver.rest.format

Examples of org.geoserver.rest.format.StringFormat


    @Override
    protected List<DataFormat> createSupportedFormats(Request request, Response response) {

        List<DataFormat> formats = new ArrayList<DataFormat>();
        // formats.add(new StringFormat( MediaType.TEXT_PLAIN ));
        formats.add(new StringFormat(MediaType.TEXT_XML));
        return formats;

    }
View Full Code Here


    @Override
    protected List<DataFormat> createSupportedFormats(Request request, Response response) {

        List<DataFormat> formats = new ArrayList<DataFormat>();
        // formats.add(new StringFormat( MediaType.TEXT_PLAIN ));
        formats.add(new StringFormat(MediaType.TEXT_XML));
        return formats;

    }
View Full Code Here

TOP

Related Classes of org.geoserver.rest.format.StringFormat

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.