summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape
diff options
context:
space:
mode:
authorFraser Tweedale <ftweedal@redhat.com>2015-12-22 12:43:34 +1100
committerFraser Tweedale <ftweedal@redhat.com>2016-02-15 14:15:07 +1000
commit0a21a687af947a4b9ed046673b7299d7a2da0710 (patch)
treed9878833fef3cbcaf7de802b5f9a25b03a00a873 /base/common/src/com/netscape
parent27a38daf9840e4fd9bc031daf25024806d05e943 (diff)
downloadpki-0a21a687af947a4b9ed046673b7299d7a2da0710.tar.gz
pki-0a21a687af947a4b9ed046673b7299d7a2da0710.tar.xz
pki-0a21a687af947a4b9ed046673b7299d7a2da0710.zip
Remove unused TOKEN_AUTHMGR_IMPL_NAME AuthToken attribute
Diffstat (limited to 'base/common/src/com/netscape')
-rw-r--r--base/common/src/com/netscape/certsrv/authentication/AuthToken.java19
1 files changed, 0 insertions, 19 deletions
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
@@ -75,12 +75,6 @@ public class AuthToken implements IAuthToken {
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 {
*
* <pre>
* "authMgrInstName" - The authentication manager instance name.
- * "authMgrImplName" - The authentication manager plugin name.
* "authTime" - The - The time of authentication.
* </pre>
*
@@ -107,7 +100,6 @@ public class AuthToken implements IAuthToken {
mAttrs = new Hashtable<String, Object>();
if (authMgr != null) {
set(TOKEN_AUTHMGR_INST_NAME, authMgr.getName());
- set(TOKEN_AUTHMGR_IMPL_NAME, authMgr.getImplName());
}
set(TOKEN_AUTHTIME, new Date());
}
@@ -419,17 +411,6 @@ public class AuthToken implements IAuthToken {
}
/**
- * 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.
*
* @return The time of authentication