|
From: Pelle B. <pe...@us...> - 2004-03-31 23:23:00
|
Update of /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/browser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28687/src/java/org/neuclear/ledger/browser Modified Files: BookBrowser.java Log Message: Reworked the ID's of the transactions. The primary ID is now the request ID. Receipt ID's are optional and added using a separate set method. The various interactive passphrase agents now have shell methods for the new interactive approach. Index: BookBrowser.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-ledger/src/java/org/neuclear/ledger/browser/BookBrowser.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** BookBrowser.java 26 Mar 2004 23:36:34 -0000 1.4 --- BookBrowser.java 31 Mar 2004 23:11:09 -0000 1.5 *************** *** 25,28 **** --- 25,33 ---- $Id$ $Log$ + Revision 1.5 2004/03/31 23:11:09 pelle + Reworked the ID's of the transactions. The primary ID is now the request ID. + Receipt ID's are optional and added using a separate set method. + The various interactive passphrase agents now have shell methods for the new interactive approach. + Revision 1.4 2004/03/26 23:36:34 pelle The simple browse(book) now works on hibernate, I have implemented the other two, which currently don not constrain the query correctly. *************** *** 56,61 **** ! protected final void setRow(String xid, String reqid, String counterparty, String comment, Date valuetime, double amount, Date expirytime, Date cancelled, String completedId) { ! this.id = xid; this.reqid = reqid; this.counterparty = counterparty; --- 61,65 ---- ! protected final void setRow(String reqid, String counterparty, String comment, Date valuetime, double amount, Date expirytime, Date cancelled, String completedId) { this.reqid = reqid; this.counterparty = counterparty; *************** *** 72,79 **** } - public String getId() { - return id; - } - public String getRequestId() { return reqid; --- 76,79 ---- *************** *** 114,118 **** private final String book; - private String id; private String reqid; private String counterparty; --- 114,117 ---- |