All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jayway.restassured.internal.path.xml.GroovyNodeSerializer.groovy Maven / Gradle / Ivy

package com.jayway.restassured.internal.path.xml

import groovy.util.slurpersupport.Node
import groovy.util.slurpersupport.NodeChild
import groovy.xml.XmlUtil

class GroovyNodeSerializer {
    static String toXML(Node node) {
        return XmlUtil.serialize(new NodeChild(node, null, null))
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy