X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=auth%2Fauth-core%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Faaf%2Fauth%2Forg%2FOrganization.java;h=539b9369394dc10a95e65798ed2b1f916c7f0cda;hb=08755cae37030d74d8fcadf38f9919c9d9fd21c0;hp=597f269626e3044de2f8170fbfe02cca02a3e096;hpb=bd7def7ee2098af56ce66752f59c062d7923fb69;p=aaf%2Fauthz.git 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 597f2696..539b9369 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 @@ -106,18 +106,16 @@ public interface Organization { public Identity getIdentity(AuthzTrans trans, String id) throws OrganizationException; /** - * May AutoDelete + * Is Revoked * * Deletion of an Identity that has been removed from an Organization can be dangerous. Mistakes may have been made * in the Organization side, a Feed might be corrupted, an API might not be quite right. * - * The implementation of this method can use a double check of some sort, such as comparsion of missing ID in Organization + * The implementation of this method can use a double check of some sort, such as comparison of missing ID in Organization * feed with a "Deleted ID" feed. * - * The failure to be in Organization will still be reported, if returned "false", but if true, it is taken as an - * ok to proceed with deletion. */ - public boolean mayAutoDelete(AuthzTrans trans, String id); + public boolean isRevoked(AuthzTrans trans, String id); /** @@ -562,7 +560,7 @@ public interface Organization { } @Override - public boolean mayAutoDelete(AuthzTrans trans, String id) { + public boolean isRevoked(AuthzTrans trans, String id) { // provide a corresponding feed that indicates that an ID has been intentionally removed from identities.dat table. return false; }