[Webfunds-commits] java/webfunds/sox Account.java
Jeroen C. van Gelderen
gelderen@cypherpunks.ai
Thu, 6 Jul 2000 15:39:24 -0400 (AST)
gelderen 00/07/06 15:39:24
Modified: webfunds/sox Account.java
Log:
- Too many formatting fixes. This is unfortunate but I had to take out the
functional changes for this commit :-(
Revision Changes Path
1.67 +18 -23 java/webfunds/sox/Account.java
Index: Account.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/Account.java,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- Account.java 2000/06/20 09:57:36 1.66
+++ Account.java 2000/07/06 19:39:23 1.67
@@ -1,47 +1,42 @@
-/*
- * $Id: Account.java,v 1.66 2000/06/20 09:57:36 iang Exp $
+/* $Id: Account.java,v 1.67 2000/07/06 19:39:23 gelderen Exp $
*
- * Copyright (c) Systemics Ltd 1995-1999 on behalf of
- * the WebFunds Development Team. All Rights Reserved.
+ * Copyright (c) Systemics Inc. 1995-2000 on behalf of
+ * The WebFunds Development Team. All rights reserved.
*/
package webfunds.sox;
+
import java.io.*;
+import java.net.URL;
+import java.security.InvalidKeyException;
+import java.security.KeyException;
+import java.security.PrivateKey;
+import java.security.PublicKey;
import java.util.Date;
-import java.util.Hashtable;
import java.util.Enumeration;
-
-//import java.security.*;
-import java.security.KeyException;
-//import sun.security.x509.*;
-import java.net.URL;
+import java.util.Hashtable;
import java.util.Vector;
-import java.security.PublicKey;
-import java.security.PrivateKey;
-import java.security.InvalidKeyException;
+
/**
* This class contains all information needed about an
* account in order to be able to generate authentication
* information, except perhaps for holding a key passphrase,
* which is not stored in the Store (only in a runtime object).
- *
- * The account does not do any work, it relies on SubAccounts
- * for that purpose.
*
- * @version $version: $
+ * @version $Revision: 1.67 $
+ * @author Jeroen C. van Gelderen (gelderen@webfunds.org)
+ * @author Unknown
*/
-public class Account
- extends Encodable implements Serializable
+public class Account extends Encodable
{
/**
* The version of the encoded object:
* 5 - added application string.
- * 4 - keys not certs
- * 3 - added separate sub accounts
+ * 4 - keys not certs.
+ * 3 - added separate sub accounts.
*/
- public static final int VERSION = 5; // added application string
- //public static final int versionOld = 4;
+ public static final int VERSION = 5;
protected int req_version = VERSION;