grails.plugin.json.converters.InstantJsonConverter.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of views-json Show documentation
Show all versions of views-json Show documentation
Provides additional view technologies to the Grails framework, including JSON and Markup views.
The newest version!
package grails.plugin.json.converters
import grails.plugin.json.builder.JsonGenerator
import groovy.transform.CompileStatic
import java.time.Instant
/**
* A class to render a {@link java.time.Instant} as json
*
* @author James Kleeh
*/
@CompileStatic
class InstantJsonConverter implements JsonGenerator.Converter {
@Override
boolean handles(Class> type) {
Instant == type
}
@Override
Object convert(Object value, String key) {
((Instant)value).toEpochMilli()
}
}