diff options
author | Instrumental <jonathan.gathman@att.com> | 2018-05-18 07:26:59 -0500 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2018-05-18 07:27:06 -0500 |
commit | 88aec4e738343856f89f39972e0b87635b80e8c3 (patch) | |
tree | add17e2aa2315a63504bb508703108fb18704926 /auth/auth-service/src/main/java/org | |
parent | 13df7fff629c4fae42de9c619f3bd5aeeeddf04a (diff) |
Remove some attisms
Issue-ID: AAF-291
Change-Id: If20e87b3e1eb5738a32be448aa8219b04bd7520f
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-service/src/main/java/org')
-rw-r--r-- | auth/auth-service/src/main/java/org/onap/aaf/auth/service/AuthzCassServiceImpl.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/auth/auth-service/src/main/java/org/onap/aaf/auth/service/AuthzCassServiceImpl.java b/auth/auth-service/src/main/java/org/onap/aaf/auth/service/AuthzCassServiceImpl.java index b66516e0..e8468d6a 100644 --- a/auth/auth-service/src/main/java/org/onap/aaf/auth/service/AuthzCassServiceImpl.java +++ b/auth/auth-service/src/main/java/org/onap/aaf/auth/service/AuthzCassServiceImpl.java @@ -214,7 +214,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 201, errorCodes = { 403,404,406,409 }, text = { "Add an Identity :id to the list of Admins for the Namespace :ns", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" } + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override public Result<Void> addAdminNS(AuthzTrans trans, String ns, String id) { @@ -230,7 +230,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 200, errorCodes = { 403,404 }, text = { "Remove an Identity :id from the list of Admins for the Namespace :ns", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" } + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override public Result<Void> delAdminNS(AuthzTrans trans, String ns, String id) { @@ -246,7 +246,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 201, errorCodes = { 403,404,406,409 }, text = { "Add an Identity :id to the list of Responsibles for the Namespace :ns", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" } + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override public Result<Void> addResponsibleNS(AuthzTrans trans, String ns, String id) { @@ -262,7 +262,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 200, errorCodes = { 403,404 }, text = { "Remove an Identity :id to the list of Responsibles for the Namespace :ns", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)", + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)", "Note: A namespace must have at least 1 responsible party" } ) @@ -512,7 +512,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 200, errorCodes = { 403,404 }, text = { "Lists all Namespaces where Identity :id is an Admin", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override @@ -542,7 +542,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 200, errorCodes = { 403,404 }, text = { "Lists all Namespaces where Identity :id is either an Admin or an Owner", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override @@ -633,7 +633,7 @@ public class AuthzCassServiceImpl <NSS,PERMS,PERMKEY,ROLES,USERS,USERROLES,DELGS expectedCode = 200, errorCodes = { 403,404 }, text = { "Lists all Namespaces where Identity :id is a Responsible Party", - "Note: :id must be fully qualified (i.e. ab1234@csp.att.com)" + "Note: :id must be fully qualified (i.e. ab1234@people.osaaf.org)" } ) @Override |