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

com.github.davidmoten.aws.maven.Util Maven / Gradle / Ivy

package com.github.davidmoten.aws.maven;

import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;

final class Util {

    static String formatDateTime(Date date) {
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
        sdf.setTimeZone(TimeZone.getTimeZone("UTC"));
        return sdf.format(date);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy