mirror of
https://github.com/OpenBankProject/OBP-Hydra-Identity-Provider.git
synced 2026-02-06 10:48:13 +00:00
12 lines
248 B
Java
12 lines
248 B
Java
package com.openbankproject;
|
|
|
|
// DateTimeUtils.java
|
|
import java.time.Instant;
|
|
|
|
public class DateTimeUtils {
|
|
public static String printUtcDateTime() {
|
|
Instant now = Instant.now();
|
|
return "at UTC Time: " + now.toString();
|
|
}
|
|
}
|