[Webfunds-commits] java/webfunds/sox Id.java

Ian Grigg iang@cypherpunks.ai
Mon, 26 Mar 2001 09:09:57 -0400 (AST)


iang        01/03/26 09:09:56

  Modified:    webfunds/sox Id.java
  Log:
  added back in the missing getId methods; there is a phase difference
  between distributions of WebFunds and older Traders...

Revision  Changes    Path
1.12      +6 -2      java/webfunds/sox/Id.java

Index: Id.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/sox/Id.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- Id.java	2001/03/23 15:06:03	1.11
+++ Id.java	2001/03/26 13:09:56	1.12
@@ -1,5 +1,5 @@
 /*
- * $Id: Id.java,v 1.11 2001/03/23 15:06:03 iang Exp $
+ * $Id: Id.java,v 1.12 2001/03/26 13:09:56 iang Exp $
  *
  * Copyright (c) Systemics Ltd 1995-1999 on behalf of
  * the WebFunds Development Team.  All Rights Reserved.
@@ -14,7 +14,7 @@
  * an object by means of a hash or similar.
  * This is a pseudo abstract class for other identifier classes.
  *
- * @version $Revision: 1.11 $
+ * @version $Revision: 1.12 $
  */
 public /*abstract*/ class Id extends Encodable
     // should be abstract but this makes the test harder
@@ -44,6 +44,10 @@
         this.id = byteArray;
     }
 
+    /** (deprecated) */
+    public byte[] getId() { return id; }
+    /** (deprecated) */
+    public void setId(byte[] byteArray) { this.id = byteArray; }
 
 
     /**