summaryrefslogtreecommitdiffstats
path: root/pki/base/kra
diff options
context:
space:
mode:
authorAdam Young <ayoung@redhat.com>2011-12-07 11:02:06 -0500
committerAdam Young <ayoung@redhat.com>2011-12-20 20:39:09 -0500
commit1a37d6047e0db50d6809f716fc3035af1cb603fa (patch)
tree0ba12d3e5ea37d4b63a03e4df29b0fc37855dbff /pki/base/kra
parent3425098266c4caebcf7dc58612ae5947e791c930 (diff)
downloadpki-1a37d6047e0db50d6809f716fc3035af1cb603fa.tar.gz
pki-1a37d6047e0db50d6809f716fc3035af1cb603fa.tar.xz
pki-1a37d6047e0db50d6809f716fc3035af1cb603fa.zip
Removal of unused private methods
These methods are uncallable. There might be some discussion about the private default constructores. The Rules of Java are different from C++: If there is any constructor defined, all the other defaults befome uncallable. Thus, the private default constructors are not needed. https://bugzilla.redhat.com/show_bug.cgi?id=728303 Conflicts: pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java
Diffstat (limited to 'pki/base/kra')
-rw-r--r--pki/base/kra/src/com/netscape/kra/EnrollmentService.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/pki/base/kra/src/com/netscape/kra/EnrollmentService.java b/pki/base/kra/src/com/netscape/kra/EnrollmentService.java
index 397793bfc..6415e1903 100644
--- a/pki/base/kra/src/com/netscape/kra/EnrollmentService.java
+++ b/pki/base/kra/src/com/netscape/kra/EnrollmentService.java
@@ -855,43 +855,6 @@ public class EnrollmentService implements IService {
}
/**
- * Signed Audit Log Recovery ID
- *
- * This method is called to obtain the "RecoveryID" for
- * a signed audit log message.
- * <P>
- *
- * @return id string containing the signed audit log message RecoveryID
- */
- private String auditRecoveryID() {
- // if no signed audit object exists, bail
- if (mSignedAuditLogger == null) {
- return null;
- }
-
- String recoveryID = null;
-
- // Initialize recoveryID
- SessionContext auditContext = SessionContext.getExistingContext();
-
- if (auditContext != null) {
- recoveryID = (String)
- auditContext.get(SessionContext.RECOVERY_ID);
-
- if (recoveryID != null) {
- recoveryID = recoveryID.trim();
- } else {
- recoveryID = ILogger.UNIDENTIFIED;
- }
- } else {
- recoveryID = ILogger.UNIDENTIFIED;
- }
-
- return recoveryID;
- }
-
-
- /**
* Signed Audit Log
*
* This method is called to store messages to the signed audit log.