summaryrefslogtreecommitdiffstats
path: root/base/server
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2013-11-14 10:32:39 -0500
committerEndi S. Dewata <edewata@redhat.com>2013-11-15 12:40:14 -0500
commitc73890c7c617732a84d009e117ff7aeab0133053 (patch)
tree8d57b4b4f4a8707efb134f218648d2985ae112e9 /base/server
parentf93635bd0035f6273c8ca648bf073c650441030d (diff)
downloadpki-c73890c7c617732a84d009e117ff7aeab0133053.tar.gz
pki-c73890c7c617732a84d009e117ff7aeab0133053.tar.xz
pki-c73890c7c617732a84d009e117ff7aeab0133053.zip
Updated ACL and auth method mapping names.
The ACL and auth method mapping names in some resources have been modified to be more consistent with those in other resources.
Diffstat (limited to 'base/server')
-rw-r--r--base/server/cms/src/com/netscape/cms/authorization/AuthMethodInterceptor.java12
1 files changed, 9 insertions, 3 deletions
diff --git a/base/server/cms/src/com/netscape/cms/authorization/AuthMethodInterceptor.java b/base/server/cms/src/com/netscape/cms/authorization/AuthMethodInterceptor.java
index 8b81b429a..75159f375 100644
--- a/base/server/cms/src/com/netscape/cms/authorization/AuthMethodInterceptor.java
+++ b/base/server/cms/src/com/netscape/cms/authorization/AuthMethodInterceptor.java
@@ -68,15 +68,21 @@ public class AuthMethodInterceptor implements ContainerRequestFilter {
if (url == null) {
authMethodProperties.put("default", "*");
authMethodProperties.put("account", "certUserDBAuthMgr,passwdUserDBAuthMgr");
- authMethodProperties.put("admin", "certUserDBAuthMgr");
- authMethodProperties.put("agent", "certUserDBAuthMgr");
+ authMethodProperties.put("authenticators", "certUserDBAuthMgr");
+ authMethodProperties.put("certs", "certUserDBAuthMgr");
+ authMethodProperties.put("certrequests", "certUserDBAuthMgr");
authMethodProperties.put("config", "certUserDBAuthMgr");
authMethodProperties.put("connections", "certUserDBAuthMgr");
- authMethodProperties.put("authenticators", "certUserDBAuthMgr");
+ authMethodProperties.put("groups", "certUserDBAuthMgr");
+ authMethodProperties.put("keys", "certUserDBAuthMgr");
+ authMethodProperties.put("keyrequests", "certUserDBAuthMgr");
+ authMethodProperties.put("kraconnectors", "certUserDBAuthMgr");
authMethodProperties.put("profiles", "certUserDBAuthMgr");
authMethodProperties.put("securityDomain.installToken", "passwdUserDBAuthMgr");
authMethodProperties.put("selftests", "certUserDBAuthMgr");
authMethodProperties.put("tokens", "certUserDBAuthMgr");
+ authMethodProperties.put("tpsconnectors", "certUserDBAuthMgr");
+ authMethodProperties.put("users", "certUserDBAuthMgr");
} else {
authMethodProperties.load(url.openStream());