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

org.grails.plugins.codecs.XMLCodec Maven / Gradle / Ivy

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