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

com.voximplant.apiclient.util.DateSerializer Maven / Gradle / Ivy

Go to download

Voximplant Java API client library. Voximplant is a cloud communications platform for business and developers

There is a newer version: 1.11.0
Show newest version
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