|
From: <pe...@us...> - 2004-01-12 22:39:19
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts
In directory sc8-pr-cvs1:/tmp/cvs-serv12929/src/java/org/neuclear/exchange/contracts
Modified Files:
ExchangeAgent.java
Log Message:
Completed all the builders and contracts.
Added a new abstract Value class to contain either an amount or a list of serial numbers.
Now ready to finish off the AssetControllers.
Index: ExchangeAgent.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts/ExchangeAgent.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExchangeAgent.java 5 Jan 2004 23:47:10 -0000 1.1
--- ExchangeAgent.java 12 Jan 2004 22:39:14 -0000 1.2
***************
*** 26,29 ****
--- 26,34 ----
$Id$
$Log$
+ Revision 1.2 2004/01/12 22:39:14 pelle
+ Completed all the builders and contracts.
+ Added a new abstract Value class to contain either an amount or a list of serial numbers.
+ Now ready to finish off the AssetControllers.
+
Revision 1.1 2004/01/05 23:47:10 pelle
Create new Document classification "order", which is really just inherint in the new
***************
*** 39,44 ****
*/
public class ExchangeAgent extends Identity{
! public ExchangeAgent(SignedNamedCore core, String repository, String signer, String logger, String receiver, PublicKey pub) {
! super(core, repository, signer, logger, receiver, pub);
}
--- 44,49 ----
*/
public class ExchangeAgent extends Identity{
! public ExchangeAgent(SignedNamedCore core, PublicKey pub) {
! super(core, pub);
}
|