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

br.com.moip.resource.ApiDate Maven / Gradle / Ivy

There is a newer version: 4.7.6
Show newest version
package br.com.moip.resource;

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

public class ApiDate {
    private Date date;

    public Date getDate() {
        return date;
    }

    public void setDate(Date date) {
        this.date = date;
    }

    public String getFormatedDate() {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        return simpleDateFormat.format(this.getDate());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy