|
From: <pe...@us...> - 2003-11-21 04:43:09
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange
In directory sc8-pr-cvs1:/tmp/cvs-serv10286/src/java/org/neuclear/exchange
Modified Files:
ExchangeOrder.java ExchangeOrderReceipt.java
ExchangePerformedException.java
Log Message:
EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
Otherwise You will Finaliate.
Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
This should hopefully make everything more stable (and secure).
Index: ExchangeOrder.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/ExchangeOrder.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ExchangeOrder.java 10 Nov 2003 17:42:08 -0000 1.3
--- ExchangeOrder.java 21 Nov 2003 04:43:04 -0000 1.4
***************
*** 23,26 ****
--- 23,32 ----
$Id$
$Log$
+ Revision 1.4 2003/11/21 04:43:04 pelle
+ EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
+ Otherwise You will Finaliate.
+ Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
+ This should hopefully make everything more stable (and secure).
+
Revision 1.3 2003/11/10 17:42:08 pelle
The AssetController interface has been more or less finalized.
***************
*** 54,59 ****
* Time: 5:28:20 PM
*/
! public class ExchangeOrder {
! public ExchangeOrder(HeldTransferReceipt bid, String requestedAsset, double amount) {
this.bid = bid;
this.requestedAsset = requestedAsset;
--- 60,65 ----
* Time: 5:28:20 PM
*/
! public final class ExchangeOrder {
! public ExchangeOrder(final HeldTransferReceipt bid, final String requestedAsset, final double amount) {
this.bid = bid;
this.requestedAsset = requestedAsset;
***************
*** 61,73 ****
}
! public HeldTransferReceipt getBid() {
return bid;
}
! public String getRequestedAsset() {
return requestedAsset;
}
! public double getAmount() {
return amount;
}
--- 67,79 ----
}
! public final HeldTransferReceipt getBid() {
return bid;
}
! public final String getRequestedAsset() {
return requestedAsset;
}
! public final double getAmount() {
return amount;
}
Index: ExchangeOrderReceipt.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/ExchangeOrderReceipt.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ExchangeOrderReceipt.java 10 Nov 2003 17:42:08 -0000 1.3
--- ExchangeOrderReceipt.java 21 Nov 2003 04:43:04 -0000 1.4
***************
*** 23,26 ****
--- 23,32 ----
$Id$
$Log$
+ Revision 1.4 2003/11/21 04:43:04 pelle
+ EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
+ Otherwise You will Finaliate.
+ Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
+ This should hopefully make everything more stable (and secure).
+
Revision 1.3 2003/11/10 17:42:08 pelle
The AssetController interface has been more or less finalized.
***************
*** 54,61 ****
* Time: 5:40:46 PM
*/
! public class ExchangeOrderReceipt {
! public ExchangeOrderReceipt(ExchangeAgent agent, String id, ExchangeOrder order) {
this.agent = agent;
this.id = id;
--- 60,67 ----
* Time: 5:40:46 PM
*/
! public final class ExchangeOrderReceipt {
! public ExchangeOrderReceipt(final ExchangeAgent agent, final String id, final ExchangeOrder order) {
this.agent = agent;
this.id = id;
***************
*** 85,89 ****
}
! public void cancel() throws ExchangePerformedException {
agent.cancel(this);
}
--- 91,95 ----
}
! public final void cancel() throws ExchangePerformedException {
agent.cancel(this);
}
Index: ExchangePerformedException.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/exchange/ExchangePerformedException.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ExchangePerformedException.java 10 Nov 2003 17:42:08 -0000 1.3
--- ExchangePerformedException.java 21 Nov 2003 04:43:04 -0000 1.4
***************
*** 21,24 ****
--- 21,30 ----
$Id$
$Log$
+ Revision 1.4 2003/11/21 04:43:04 pelle
+ EncryptedFileStore now works. It uses the PBECipher with DES3 afair.
+ Otherwise You will Finaliate.
+ Anything that can be final has been made final throughout everyting. We've used IDEA's Inspector tool to find all instance of variables that could be final.
+ This should hopefully make everything more stable (and secure).
+
Revision 1.3 2003/11/10 17:42:08 pelle
The AssetController interface has been more or less finalized.
***************
*** 52,57 ****
* Time: 5:54:44 PM
*/
! public class ExchangePerformedException extends Exception {
! public ExchangePerformedException(String string) {
super(string);
}
--- 58,63 ----
* Time: 5:54:44 PM
*/
! public final class ExchangePerformedException extends Exception {
! public ExchangePerformedException(final String string) {
super(string);
}
|