
org.grails.plugins.codecs.JSONCodec 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.JSONCodecFactory;
import grails.encoders.JSONEncoder;
/**
* A codec that encodes strings to JSON
*
* @author Lari Hotari
* @since 2.3.4
*/
public class JSONCodec extends JSONCodecFactory {
public JSONCodec() {
super();
setEncoder(new JSONEncoder());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy