From 122245400a8cbf72f65a206592eb15f70826ace9 Mon Sep 17 00:00:00 2001 From: Thomas <> Date: Wed, 19 Jan 2022 14:00:06 +0100 Subject: refactor(core): change API parameters from 'Date' to 'Instant' --- .../egiz/eaaf/core/api/idp/auth/data/IAuthProcessDataContainer.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth') diff --git a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IAuthProcessDataContainer.java b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IAuthProcessDataContainer.java index cb9adbc8..ac235a8c 100644 --- a/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IAuthProcessDataContainer.java +++ b/eaaf_core_api/src/main/java/at/gv/egiz/eaaf/core/api/idp/auth/data/IAuthProcessDataContainer.java @@ -19,6 +19,7 @@ package at.gv.egiz.eaaf.core.api.idp.auth.data; +import java.time.Instant; import java.util.Date; import java.util.Map; import java.util.Map.Entry; @@ -33,7 +34,7 @@ public interface IAuthProcessDataContainer { * * @return The issuing time of the AUTH-Block SAML assertion. */ - Date getIssueInstant(); + Instant getIssueInstant(); /** * Returns the issuing time of the AUTH-Block SAML assertion. @@ -58,7 +59,7 @@ public interface IAuthProcessDataContainer { * * @param issueInstant The issueInstant to set. */ - void setIssueInstant(Date issueInstant); + void setIssueInstant(Instant issueInstant); /** * Indicate if the authentication process is finished. -- cgit v1.2.3