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

dsl_json.org.threeten.bp.LocalDateDslJsonConverter Maven / Gradle / Ivy

There is a newer version: 1.10.0
Show newest version
package dsl_json.org.threeten.bp;

import com.dslplatform.json.Configuration;
import com.dslplatform.json.DslJson;
import com.dslplatform.json.ThreetenbpConverter;
import org.threeten.bp.LocalDate;

public class LocalDateDslJsonConverter implements Configuration {
	@Override
	public void configure(DslJson json) {
		json.registerReader(LocalDate.class, ThreetenbpConverter.LOCAL_DATE_READER);
		json.registerWriter(LocalDate.class, ThreetenbpConverter.LOCAL_DATE_WRITER);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy