|
From: <pe...@us...> - 2004-01-10 00:01:22
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/asset/contracts/builders In directory sc8-pr-cvs1:/tmp/cvs-serv22932/src/java/org/neuclear/asset/contracts/builders Modified Files: AssetBuilder.java Log Message: Implemented new Schema for Transfer* Working on it for Exchange*, so far all Receipts are implemented. Added SignedNamedDocument which is a generic SignedNamedObject that works with all Signed XML. Changed SignedNamedObject.getDigest() from byte array to String. The whole malarchy in neuclear-pay does not build yet. The refactoring is a big job, but getting there. Index: AssetBuilder.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/asset/contracts/builders/AssetBuilder.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** AssetBuilder.java 19 Dec 2003 00:30:49 -0000 1.5 --- AssetBuilder.java 10 Jan 2004 00:00:44 -0000 1.6 *************** *** 8,17 **** import org.neuclear.commons.crypto.signers.TestCaseSigner; import org.neuclear.id.builders.IdentityBuilder; - import org.neuclear.id.SignedNamedObject; import org.neuclear.store.FileStore; import org.neuclear.store.Store; - import org.neuclear.xml.XMLException; - import java.security.GeneralSecurityException; import java.security.PublicKey; --- 8,14 ---- *************** *** 36,39 **** --- 33,43 ---- $Id$ $Log$ + Revision 1.6 2004/01/10 00:00:44 pelle + Implemented new Schema for Transfer* + Working on it for Exchange*, so far all Receipts are implemented. + Added SignedNamedDocument which is a generic SignedNamedObject that works with all Signed XML. + Changed SignedNamedObject.getDigest() from byte array to String. + The whole malarchy in neuclear-pay does not build yet. The refactoring is a big job, but getting there. + Revision 1.5 2003/12/19 00:30:49 pelle Lots of usability changes through out all the passphrase agents and end user tools. |