|
From: <pe...@us...> - 2004-01-05 23:47:13
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/asset/receiver/servlet In directory sc8-pr-cvs1:/tmp/cvs-serv15193/src/java/org/neuclear/asset/receiver/servlet Modified Files: AssetControllerServlet.java TransferRequestServlet.java Log Message: Create new Document classification "order", which is really just inherint in the new package layout. Got rid of much of the inheritance that was lying around and thought a bit further about the format of the exchange orders. Index: AssetControllerServlet.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/asset/receiver/servlet/AssetControllerServlet.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** AssetControllerServlet.java 2 Jan 2004 23:18:06 -0000 1.8 --- AssetControllerServlet.java 5 Jan 2004 23:47:09 -0000 1.9 *************** *** 3,9 **** import org.neuclear.asset.contracts.Asset; import org.neuclear.asset.contracts.AssetGlobals; ! import org.neuclear.asset.contracts.TransferGlobals; import org.neuclear.asset.controllers.currency.CurrencyController; import org.neuclear.asset.receiver.AssetControllerReceiver; import org.neuclear.commons.crypto.signers.TestCaseSigner; import org.neuclear.commons.sql.JNDIConnectionSource; --- 3,10 ---- import org.neuclear.asset.contracts.Asset; import org.neuclear.asset.contracts.AssetGlobals; ! import org.neuclear.asset.orders.transfers.TransferGlobals; import org.neuclear.asset.controllers.currency.CurrencyController; import org.neuclear.asset.receiver.AssetControllerReceiver; + import org.neuclear.asset.orders.transfers.TransferGlobals; import org.neuclear.commons.crypto.signers.TestCaseSigner; import org.neuclear.commons.sql.JNDIConnectionSource; *************** *** 37,40 **** --- 38,46 ---- $Id$ $Log$ + Revision 1.9 2004/01/05 23:47:09 pelle + Create new Document classification "order", which is really just inherint in the new + package layout. + Got rid of much of the inheritance that was lying around and thought a bit further about the format of the exchange orders. + Revision 1.8 2004/01/02 23:18:06 pelle Added StatementFactory pattern and refactored the ledger to use it. *************** *** 58,62 **** All unit tests in commons, id and xmlsec now work. AssetController now successfully processes payments in the unit test. ! Payment Web App has working form that creates a TransferRequest presents it to the signer and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust. --- 64,68 ---- All unit tests in commons, id and xmlsec now work. AssetController now successfully processes payments in the unit test. ! Payment Web App has working form that creates a TransferOrder presents it to the signer and forwards it to AssetControlServlet. (Which throws an XML Parser Exception) I think the XMLReaderServlet is bust. Index: TransferRequestServlet.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/asset/receiver/servlet/TransferRequestServlet.java,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TransferRequestServlet.java 20 Dec 2003 00:17:41 -0000 1.1 --- TransferRequestServlet.java 5 Jan 2004 23:47:09 -0000 1.2 *************** *** 9,13 **** import org.neuclear.commons.Utility; import org.neuclear.commons.time.TimeTools; ! import org.neuclear.asset.contracts.builders.TransferRequestBuilder; import org.neuclear.asset.contracts.Asset; import org.neuclear.asset.InvalidTransferException; --- 9,13 ---- import org.neuclear.commons.Utility; import org.neuclear.commons.time.TimeTools; ! import org.neuclear.asset.orders.builders.TransferRequestBuilder; import org.neuclear.asset.contracts.Asset; import org.neuclear.asset.InvalidTransferException; *************** *** 35,38 **** --- 35,43 ---- $Id$ $Log$ + Revision 1.2 2004/01/05 23:47:09 pelle + Create new Document classification "order", which is really just inherint in the new + package layout. + Got rid of much of the inheritance that was lying around and thought a bit further about the format of the exchange orders. + Revision 1.1 2003/12/20 00:17:41 pelle overwrote the standard Object.toString(), hashCode() and equals() methods for SignedNamedObject/Core |