
grails.encoders.JSONEncoder 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 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