Package play.mvc.results

Examples of play.mvc.results.RenderXml


    /**
     * Return a 200 OK text/xml response
     * @param xml The XML string
     */
    protected static void renderXml(String xml) {
        throw new RenderXml(xml);
    }
View Full Code Here


    /**
     * Return a 200 OK text/xml response
     * @param xml The DOM document object
     */
    protected static void renderXml(Document xml) {
        throw new RenderXml(xml);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response. Use renderXml(Object, XStream) to customize the result.
     * @param o the object to serialize
     */
    protected static void renderXml(Object o) {
        throw new RenderXml(o);
    }
View Full Code Here

     * @param o the object to serialize
     * @param xstream the XStream object to use for serialization. See XStream's documentation
     *      for details about customizing the output.
     */
    protected static void renderXml(Object o, XStream xstream) {
        throw new RenderXml(o, xstream);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response
     * @param xml The XML string
     */
    protected static void renderXml(String xml) {
        throw new RenderXml(xml);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response
     * @param xml The DOM document object
     */
    protected static void renderXml(Document xml) {
        throw new RenderXml(xml);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response. Use renderXml(Object, XStream) to customize the result.
     * @param o the object to serialize
     */
    protected static void renderXml(Object o) {
        throw new RenderXml(o);
    }
View Full Code Here

     * @param o the object to serialize
     * @param xstream the XStream object to use for serialization. See XStream's documentation
     *      for details about customizing the output.
     */
    protected static void renderXml(Object o, XStream xstream) {
        throw new RenderXml(o, xstream);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response
     * @param xml The XML string
     */
    protected static void renderXml(String xml) {
        throw new RenderXml(xml);
    }
View Full Code Here

    /**
     * Return a 200 OK text/xml response
     * @param xml The DOM document object
     */
    protected static void renderXml(Document xml) {
        throw new RenderXml(xml);
    }
View Full Code Here

TOP

Related Classes of play.mvc.results.RenderXml

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.