Time.java

19 lines | 352 B Blame History Raw Download
package org.keycloak.util;

import java.util.Date;

/**
 * @author <a href="mailto:sthorger@redhat.com">Stian Thorgersen</a>
 */
public class Time {

    public static int currentTime() {
        return (int) (System.currentTimeMillis() / 1000);
    }

    public static Date toDate(int time) {
        return new Date(((long) time ) * 1000);
    }

}