diff options
author | Instrumental <jgonap@stl.gathman.org> | 2019-12-20 15:55:27 -0600 |
---|---|---|
committer | Instrumental <jgonap@stl.gathman.org> | 2019-12-20 15:55:29 -0600 |
commit | a3b442a09aa3666662003d7c8a5ed69ee24a373e (patch) | |
tree | d22d820020a413a015d92bc74c5e586483b54e2e /auth/auth-core/src/main | |
parent | 439d8cd4ad19585fb93d721041e21ec8b46e4f0e (diff) |
Make Organization isRevoked return Date
Issue-ID: AAF-1058
Change-Id: I4120235dc6f78fb1db0c7bea86c6938aae076b63
Signed-off-by: Instrumental <jgonap@stl.gathman.org>
Diffstat (limited to 'auth/auth-core/src/main')
-rw-r--r-- | auth/auth-core/src/main/java/org/onap/aaf/auth/org/Organization.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auth/auth-core/src/main/java/org/onap/aaf/auth/org/Organization.java b/auth/auth-core/src/main/java/org/onap/aaf/auth/org/Organization.java index 95f37859..f34ed151 100644 --- a/auth/auth-core/src/main/java/org/onap/aaf/auth/org/Organization.java +++ b/auth/auth-core/src/main/java/org/onap/aaf/auth/org/Organization.java @@ -124,7 +124,7 @@ public interface Organization { * feed with a "Deleted ID" feed. * */ - public boolean isRevoked(AuthzTrans trans, String id); + public Date isRevoked(AuthzTrans trans, String id); /** @@ -575,9 +575,9 @@ public interface Organization { } @Override - public boolean isRevoked(AuthzTrans trans, String id) { + public Date isRevoked(AuthzTrans trans, String id) { // provide a corresponding feed that indicates that an ID has been intentionally removed from identities.dat table. - return false; + return null; } @Override |