|
From: Pelle B. <pe...@us...> - 2004-04-01 23:30:35
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4049/src/java/org/neuclear/exchange/contracts Modified Files: ExchangeAgent.java Log Message: Split Identity into Signatory and Identity class. Identity remains a signed named object and will in the future just be used for self declared information. Signatory now contains the PublicKey etc and is NOT a signed object. Index: ExchangeAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts/ExchangeAgent.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ExchangeAgent.java 18 Feb 2004 00:13:30 -0000 1.3 --- ExchangeAgent.java 1 Apr 2004 23:18:33 -0000 1.4 *************** *** 5,10 **** import org.neuclear.id.targets.Targets; - import java.security.PublicKey; - /* NeuClear Distributed Transaction Clearing Platform --- 5,8 ---- *************** *** 27,30 **** --- 25,33 ---- $Id$ $Log$ + Revision 1.4 2004/04/01 23:18:33 pelle + Split Identity into Signatory and Identity class. + Identity remains a signed named object and will in the future just be used for self declared information. + Signatory now contains the PublicKey etc and is NOT a signed object. + Revision 1.3 2004/02/18 00:13:30 pelle Many, many clean ups. I've readded Targets in a new method. *************** *** 48,54 **** * Time: 11:04:32 PM */ ! public class ExchangeAgent extends Identity{ ! public ExchangeAgent(SignedNamedCore core, PublicKey pub,String signer, Targets targets) { ! super(core, pub,signer,targets); } --- 51,57 ---- * Time: 11:04:32 PM */ ! public class ExchangeAgent extends Identity { ! public ExchangeAgent(SignedNamedCore core, String signer, Targets targets) { ! super(core, signer, targets); } |