|
From: <pe...@us...> - 2003-10-25 00:46:16
|
Update of /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/pay/contracts
In directory sc8-pr-cvs1:/tmp/cvs-serv7941/src/java/org/neuclear/pay/contracts
Modified Files:
TransferGlobals.java
Log Message:
Fixed SmtpSender it now sends the messages.
Refactored CommandLineSigner. Now it simply signs files read from command line. However new class IdentityCreator
is subclassed and creates new Identities. You can subclass CommandLineSigner to create your own variants.
Several problems with configuration. Trying to solve at the moment. Updated PicoContainer to beta-2
Index: TransferGlobals.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/java/org/neuclear/pay/contracts/TransferGlobals.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TransferGlobals.java 3 Oct 2003 23:48:29 -0000 1.1
--- TransferGlobals.java 25 Oct 2003 00:38:43 -0000 1.2
***************
*** 23,26 ****
--- 23,32 ----
$Id$
$Log$
+ Revision 1.2 2003/10/25 00:38:43 pelle
+ Fixed SmtpSender it now sends the messages.
+ Refactored CommandLineSigner. Now it simply signs files read from command line. However new class IdentityCreator
+ is subclassed and creates new Identities. You can subclass CommandLineSigner to create your own variants.
+ Several problems with configuration. Trying to solve at the moment. Updated PicoContainer to beta-2
+
Revision 1.1 2003/10/03 23:48:29 pelle
Did various security related updates in the pay package with regards to immutability of fields etc.
***************
*** 35,39 ****
/**
- *
* User: pelleb
* Date: Oct 3, 2003
--- 41,44 ----
***************
*** 64,67 ****
public static final String XFER_RCPT_TAGNAME = "TransferReceipt";
public static final String XFER_NSPREFIX = "xfer";
! public static final String XFER_NSURI = "http://neudist.org/neu/xfer";
}
--- 69,72 ----
public static final String XFER_RCPT_TAGNAME = "TransferReceipt";
public static final String XFER_NSPREFIX = "xfer";
! public static final String XFER_NSURI = "http://neuclear.org/neu/xfer";
}
|