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

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

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