diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-12-08 14:20:17 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-12-08 14:20:19 -0600 |
commit | 6a37b8869b1f79eaf1ccb9e6cf44accf40e99f6b (patch) | |
tree | c824a6402097cbe3708616953a37353b415e95f0 /auth/auth-deforg | |
parent | 343481da5dac494c0b063f0b5b0ddb865fa1f214 (diff) |
Change agent.sh to work with K8s
Issue-ID: AAF-667
Change-Id: Iad69da5637a545555e3de7fff8ca8f45aa06a13c
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-deforg')
-rw-r--r-- | auth/auth-deforg/src/main/java/org/onap/aaf/org/DefaultOrg.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/auth/auth-deforg/src/main/java/org/onap/aaf/org/DefaultOrg.java b/auth/auth-deforg/src/main/java/org/onap/aaf/org/DefaultOrg.java index 3c6176e6..c7dd3d33 100644 --- a/auth/auth-deforg/src/main/java/org/onap/aaf/org/DefaultOrg.java +++ b/auth/auth-deforg/src/main/java/org/onap/aaf/org/DefaultOrg.java @@ -597,4 +597,10 @@ public class DefaultOrg implements Organization { return 0; } } + + @Override + public boolean mayAutoDelete(AuthzTrans trans, String user) { + // provide a corresponding feed that indicates that an ID has been intentionally removed from identities.dat table. + return false; + } } |