be.personify.iam.model.vault.Test Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of personify-model Show documentation
Show all versions of personify-model Show documentation
a possible model for personify
package be.personify.iam.model.vault;
import java.util.Date;
public class Test {
public static void main(String[] args) {
Date d = new Date();
d.setTime(1632088800000l);
System.out.println(d);
}
}