Package org.geoserver.rest

Examples of org.geoserver.rest.FreemarkerFormat


    }

    public Map getSupportedFormats() {
        Map theMap = new HashMap();
        theMap.put("json", new JSONFormat());
        theMap.put("html", new FreemarkerFormat("HTMLTemplates/users.ftl", getClass(), MediaType.TEXT_HTML));
        theMap.put("xml", new AutoXMLFormat());
        theMap.put(null, theMap.get("html"));

        return theMap;
    }
View Full Code Here

TOP

Related Classes of org.geoserver.rest.FreemarkerFormat

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.