summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/cmscore/authentication
diff options
context:
space:
mode:
authorEndi Sukma Dewata <edewata@redhat.com>2012-04-09 13:56:59 -0500
committerEndi Sukma Dewata <edewata@redhat.com>2012-04-12 10:16:22 -0500
commit7d88f4ee050856b8fef5f260cfe1b3aeec201fda (patch)
tree9d0b80dcbcc63ccb83d32995376168dcd086bab9 /base/common/src/com/netscape/cmscore/authentication
parent3f24e55923fc986af4c6a08b2b8d45704a905627 (diff)
downloadpki-7d88f4ee050856b8fef5f260cfe1b3aeec201fda.tar.gz
pki-7d88f4ee050856b8fef5f260cfe1b3aeec201fda.tar.xz
pki-7d88f4ee050856b8fef5f260cfe1b3aeec201fda.zip
Removed unused private fields.
Most of unused private fields have been removed because they generate warnings in Eclipse. Some are kept because it might be useful later. Ticket #139
Diffstat (limited to 'base/common/src/com/netscape/cmscore/authentication')
-rw-r--r--base/common/src/com/netscape/cmscore/authentication/CertUserDBAuthentication.java1
-rw-r--r--base/common/src/com/netscape/cmscore/authentication/ChallengePhraseAuthentication.java4
-rw-r--r--base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java2
3 files changed, 0 insertions, 7 deletions
diff --git a/base/common/src/com/netscape/cmscore/authentication/CertUserDBAuthentication.java b/base/common/src/com/netscape/cmscore/authentication/CertUserDBAuthentication.java
index d8db16ad0..fab9c1812 100644
--- a/base/common/src/com/netscape/cmscore/authentication/CertUserDBAuthentication.java
+++ b/base/common/src/com/netscape/cmscore/authentication/CertUserDBAuthentication.java
@@ -71,7 +71,6 @@ public class CertUserDBAuthentication implements IAuthManager {
private boolean mRevocationCheckingEnabled = false;
private IConfigStore mRevocationChecking = null;
- private String mRequestor = null;
public CertUserDBAuthentication() {
}
diff --git a/base/common/src/com/netscape/cmscore/authentication/ChallengePhraseAuthentication.java b/base/common/src/com/netscape/cmscore/authentication/ChallengePhraseAuthentication.java
index 1040e6034..f5bde0b54 100644
--- a/base/common/src/com/netscape/cmscore/authentication/ChallengePhraseAuthentication.java
+++ b/base/common/src/com/netscape/cmscore/authentication/ChallengePhraseAuthentication.java
@@ -40,7 +40,6 @@ import com.netscape.certsrv.ra.IRegistrationAuthority;
import com.netscape.certsrv.request.IRequest;
import com.netscape.certsrv.request.IRequestQueue;
import com.netscape.certsrv.request.RequestStatus;
-import com.netscape.certsrv.usrgrp.ICertUserLocator;
import com.netscape.cmscore.base.SubsystemRegistry;
import com.netscape.cmscore.dbs.CertRecord;
import com.netscape.cmscore.util.Debug;
@@ -75,9 +74,7 @@ public class ChallengePhraseAuthentication implements IAuthManager {
private String mImplName = null;
private IConfigStore mConfig = null;
- private ICertUserLocator mCULocator = null;
private ILogger mLogger = CMS.getLogger();
- private String mRequestor = null;
private MessageDigest mSHADigest = null;
// request attributes hacks
@@ -390,7 +387,6 @@ public class ChallengePhraseAuthentication implements IAuthManager {
if (ra != null) {
queue = ra.getRequestQueue();
- mRequestor = IRequest.REQUESTOR_RA;
}
} catch (Exception e) {
log(ILogger.LL_FAILURE,
diff --git a/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java b/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java
index 4906d5c50..235362395 100644
--- a/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java
+++ b/base/common/src/com/netscape/cmscore/authentication/SSLClientCertAuthentication.java
@@ -67,7 +67,6 @@ public class SSLClientCertAuthentication implements IAuthManager {
private String mName = null;
private String mImplName = null;
private IConfigStore mConfig = null;
- private String mRequestor = null;
/* Holds configuration parameters accepted by this implementation.
* This list is passed to the configuration console so configuration
@@ -256,7 +255,6 @@ public class SSLClientCertAuthentication implements IAuthManager {
if (ra != null) {
queue = ra.getRequestQueue();
- mRequestor = IRequest.REQUESTOR_RA;
}
} catch (Exception e) {
log(ILogger.LL_FAILURE,