|
From: Pelle B. <pe...@us...> - 2004-03-23 22:12:20
|
Update of /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14384/src/java/org/neuclear/ledger Modified Files: Ledger.java PostedTransaction.java Transaction.java Log Message: Bumped version numbers for commons and xmlsig througout. Updated repositories and webservers to use old.neuclear.org Various other fixes in project.xml and project.properties on misc projects. Index: Ledger.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/Ledger.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** Ledger.java 22 Mar 2004 21:59:37 -0000 1.12 --- Ledger.java 23 Mar 2004 22:01:43 -0000 1.13 *************** *** 4,7 **** --- 4,12 ---- * $Id$ * $Log$ + * Revision 1.13 2004/03/23 22:01:43 pelle + * Bumped version numbers for commons and xmlsig througout. + * Updated repositories and webservers to use old.neuclear.org + * Various other fixes in project.xml and project.properties on misc projects. + * * Revision 1.12 2004/03/22 21:59:37 pelle * SimpleLedger now passes all unit tests *************** *** 306,309 **** ! public abstract void close(); } --- 311,314 ---- ! public abstract void close() throws LowlevelLedgerException; } Index: PostedTransaction.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/PostedTransaction.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** PostedTransaction.java 21 Mar 2004 00:48:36 -0000 1.6 --- PostedTransaction.java 23 Mar 2004 22:01:43 -0000 1.7 *************** *** 8,11 **** --- 8,16 ---- * $Id$ * $Log$ + * Revision 1.7 2004/03/23 22:01:43 pelle + * Bumped version numbers for commons and xmlsig througout. + * Updated repositories and webservers to use old.neuclear.org + * Various other fixes in project.xml and project.properties on misc projects. + * * Revision 1.6 2004/03/21 00:48:36 pelle * The problem with Enveloped signatures has now been fixed. It was a problem in the way transforms work. I have bandaided it, but in the future if better support for transforms need to be made, we need to rethink it a bit. Perhaps using the new crypto channel's in neuclear-commons. Index: Transaction.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/Transaction.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Transaction.java 21 Mar 2004 00:48:36 -0000 1.5 --- Transaction.java 23 Mar 2004 22:01:43 -0000 1.6 *************** *** 4,7 **** --- 4,12 ---- * $Id$ * $Log$ + * Revision 1.6 2004/03/23 22:01:43 pelle + * Bumped version numbers for commons and xmlsig througout. + * Updated repositories and webservers to use old.neuclear.org + * Various other fixes in project.xml and project.properties on misc projects. + * * Revision 1.5 2004/03/21 00:48:36 pelle * The problem with Enveloped signatures has now been fixed. It was a problem in the way transforms work. I have bandaided it, but in the future if better support for transforms need to be made, we need to rethink it a bit. Perhaps using the new crypto channel's in neuclear-commons. *************** *** 64,68 **** */ public abstract class Transaction implements Serializable { - protected Transaction(final String req, final String id, final String comment, List items) throws InvalidTransactionException { this.comment = comment; --- 69,72 ---- *************** *** 89,93 **** } ! final List getItemList() { return new ArrayList(items); } --- 93,97 ---- } ! public final List getItemList() { return new ArrayList(items); } |