|
From: <pe...@us...> - 2004-02-18 00:22:44
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29255/src/java/org/neuclear/exchange/contracts Modified Files: ExchangeAgent.java Log Message: Many, many clean ups. I've readded Targets in a new method. Gotten rid of NamedObjectBuilder and revamped Identity and Resolvers Index: ExchangeAgent.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/contracts/ExchangeAgent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ExchangeAgent.java 12 Jan 2004 22:39:14 -0000 1.2 --- ExchangeAgent.java 18 Feb 2004 00:13:30 -0000 1.3 *************** *** 3,6 **** --- 3,7 ---- import org.neuclear.id.Identity; import org.neuclear.id.SignedNamedCore; + import org.neuclear.id.targets.Targets; import java.security.PublicKey; *************** *** 26,29 **** --- 27,34 ---- $Id$ $Log$ + Revision 1.3 2004/02/18 00:13:30 pelle + Many, many clean ups. I've readded Targets in a new method. + Gotten rid of NamedObjectBuilder and revamped Identity and Resolvers + Revision 1.2 2004/01/12 22:39:14 pelle Completed all the builders and contracts. *************** *** 44,49 **** */ public class ExchangeAgent extends Identity{ ! public ExchangeAgent(SignedNamedCore core, PublicKey pub) { ! super(core, pub); } --- 49,54 ---- */ public class ExchangeAgent extends Identity{ ! public ExchangeAgent(SignedNamedCore core, PublicKey pub,String signer, Targets targets) { ! super(core, pub,signer,targets); } |