summaryrefslogtreecommitdiffstats
path: root/pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java
diff options
context:
space:
mode:
Diffstat (limited to 'pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java')
-rw-r--r--pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java12
1 files changed, 7 insertions, 5 deletions
diff --git a/pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java b/pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java
index 19e4f0e30..19bfab699 100644
--- a/pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java
+++ b/pki/base/common/src/com/netscape/cms/authentication/HashAuthData.java
@@ -17,16 +17,17 @@
// --- END COPYRIGHT BLOCK ---
package com.netscape.cms.authentication;
+
// java sdk imports.
import java.util.Hashtable;
import java.util.Vector;
+
/**
- * The structure stores the information of which machine is enabled for the
- * agent-initiated user enrollment, and whom agents enable this feature, and the
- * value of the timeout.
+ * The structure stores the information of which machine is enabled for
+ * the agent-initiated user enrollment, and whom agents enable this feature,
+ * and the value of the timeout.
* <P>
- *
* @version $Revision$, $Date$
*/
public class HashAuthData extends Hashtable {
@@ -53,7 +54,7 @@ public class HashAuthData extends Hashtable {
Vector val = (Vector) get(hostname);
if (val == null) {
- val = new Vector();
+ val = new Vector();
put(hostname, val);
}
val.setElementAt(agentName, 0);
@@ -116,3 +117,4 @@ public class HashAuthData extends Hashtable {
val.setElementAt(Long.valueOf(lastLogin), 3);
}
}
+