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

grails.encoders.JSONEncoder Maven / Gradle / Ivy

The newest version!
package grails.encoders;

import grails.converters.JSON;
import org.grails.encoder.impl.BasicJSONEncoder;

public class JSONEncoder extends BasicJSONEncoder {
    @Override
    protected Object encodeAsJsonObject(Object o) {
        if(o instanceof JSON) {
            return o;
        } else {
            return new JSON(o);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy