com.dslplatform.json.ConfigureJodaTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json-joda Show documentation
Show all versions of dsl-json-joda Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
package com.dslplatform.json;
import dsl_json.org.joda.time.*;
public class ConfigureJodaTime implements Configuration {
@Override
public void configure(DslJson json) {
new LocalDateDslJsonConverter().configure(json);
new DateTimeDslJsonConverter().configure(json);
}
}