From 0a21a687af947a4b9ed046673b7299d7a2da0710 Mon Sep 17 00:00:00 2001 From: Fraser Tweedale Date: Tue, 22 Dec 2015 12:43:34 +1100 Subject: Remove unused TOKEN_AUTHMGR_IMPL_NAME AuthToken attribute --- .../netscape/certsrv/authentication/AuthToken.java | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'base/common/src/com/netscape') diff --git a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java index c44ed7668..0febf8772 100644 --- a/base/common/src/com/netscape/certsrv/authentication/AuthToken.java +++ b/base/common/src/com/netscape/certsrv/authentication/AuthToken.java @@ -74,12 +74,6 @@ public class AuthToken implements IAuthToken { /* Certificate to be revoked */ public static final String TOKEN_CERT_TO_REVOKE = "tokenCertToRevoke"; - /** - * Plugin name of the authentication manager that created the - * AuthToken as a string. - */ - public static final String TOKEN_AUTHMGR_IMPL_NAME = "authMgrImplName"; - /** * Name of the authentication manager that created the AuthToken * as a string. @@ -97,7 +91,6 @@ public class AuthToken implements IAuthToken { * *
      * 	"authMgrInstName" - The authentication manager instance name.
-     * 	"authMgrImplName" - The authentication manager plugin name.
      * 	"authTime" - The - The time of authentication.
      * 
* @@ -107,7 +100,6 @@ public class AuthToken implements IAuthToken { mAttrs = new Hashtable(); if (authMgr != null) { set(TOKEN_AUTHMGR_INST_NAME, authMgr.getName()); - set(TOKEN_AUTHMGR_IMPL_NAME, authMgr.getImplName()); } set(TOKEN_AUTHTIME, new Date()); } @@ -418,17 +410,6 @@ public class AuthToken implements IAuthToken { return ((String) mAttrs.get(TOKEN_AUTHMGR_INST_NAME)); } - /** - * Gets the plugin name of the authentication manager that created this - * token. - * - * @return The plugin name of the authentication manager that created this - * token. - */ - public String getAuthManagerImplName() { - return ((String) mAttrs.get(TOKEN_AUTHMGR_IMPL_NAME)); - } - /** * Gets the time of authentication. * -- cgit