com.voximplant.apiclient.util.DateSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apiclient Show documentation
Show all versions of apiclient Show documentation
Voximplant Java API client library. Voximplant is a cloud communications platform for business and developers
package com.voximplant.apiclient.util;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateSerializer implements ValueSerializer {
public String serialize(Date d) {
return new SimpleDateFormat("yyyy-MM-dd").format(d);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy