
org.grails.plugins.codecs.XMLCodec 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 org.grails.plugins.codecs;
import org.grails.encoder.impl.XMLCodecFactory;
import grails.encoders.XMLEncoder;
/**
* Escapes some characters for inclusion in XML documents. The decoder part can
* unescape XML entity references.
*
* @author Lari Hotari
* @since 2.3
*/
public class XMLCodec extends XMLCodecFactory {
public XMLCodec() {
super();
this.encoder = new XMLEncoder();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy