dsl_json.java.time.LocalDateDslJsonConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dsl-json-java8 Show documentation
Show all versions of dsl-json-java8 Show documentation
DSL Platform compatible Java JSON library (https://dsl-platform.com)
package dsl_json.java.time;
import com.dslplatform.json.*;
import java.time.LocalDate;
public class LocalDateDslJsonConverter implements Configuration {
@Override
public void configure(DslJson json) {
json.registerReader(LocalDate.class, JavaTimeConverter.LOCAL_DATE_READER);
json.registerWriter(LocalDate.class, JavaTimeConverter.LOCAL_DATE_WRITER);
}
}