
grails.encoders.XMLEncoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of converters Show documentation
Show all versions of converters Show documentation
Provides JSON and XML converters
The newest version!
package grails.encoders;
import grails.converters.XML;
import org.grails.encoder.impl.BasicXMLEncoder;
public class XMLEncoder extends BasicXMLEncoder {
@Override
protected Object encodeAsXmlObject(Object o) {
if(o instanceof XML) {
return o;
} else {
return new XML(o);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy