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

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

There is a newer version: 0.0.2
Show newest version
package br.com.cefis.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