|
From: <pe...@us...> - 2003-12-10 23:52:43
|
Update of /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/receiver
In directory sc8-pr-cvs1:/tmp/cvs-serv988/src/test/org/neuclear/asset/receiver
Modified Files:
CreateTestPayments.java PaymentReceiverTest.java
Log Message:
Did some cleaning up in the builders
Fixed some stuff in IdentityCreator
New maven goal to create executable jarapp
We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons.
Will release shortly.
Index: CreateTestPayments.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/receiver/CreateTestPayments.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** CreateTestPayments.java 9 Dec 2003 18:11:30 -0000 1.5
--- CreateTestPayments.java 10 Dec 2003 23:52:39 -0000 1.6
***************
*** 5,8 ****
--- 5,9 ----
import org.neuclear.asset.contracts.Asset;
import org.neuclear.asset.contracts.builders.TransferRequestBuilder;
+ import org.neuclear.commons.NeuClearException;
import org.neuclear.commons.configuration.ConfigurationException;
import org.neuclear.id.builders.NamedObjectBuilder;
***************
*** 11,16 ****
import java.io.IOException;
import java.security.KeyStoreException;
- import java.security.NoSuchAlgorithmException;
import java.security.cert.CertificateException;
import java.util.Date;
--- 12,17 ----
import java.io.IOException;
+ import java.security.GeneralSecurityException;
import java.security.KeyStoreException;
import java.security.cert.CertificateException;
import java.util.Date;
***************
*** 36,39 ****
--- 37,47 ----
$Id$
$Log$
+ Revision 1.6 2003/12/10 23:52:39 pelle
+ Did some cleaning up in the builders
+ Fixed some stuff in IdentityCreator
+ New maven goal to create executable jarapp
+ We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons.
+ Will release shortly.
+
Revision 1.5 2003/12/09 18:11:30 pelle
Moved Command Line tools to org.neuclear.id.tools.commandline
***************
*** 88,93 ****
*/
public final class CreateTestPayments extends CommandLineSigner {
! public CreateTestPayments(final String[] args) throws ParseException, NoSuchAlgorithmException, CertificateException, IOException, KeyStoreException, ConfigurationException {
super(args);
}
--- 96,102 ----
*/
public final class CreateTestPayments extends CommandLineSigner {
! public CreateTestPayments(final String[] args) throws ParseException, GeneralSecurityException, CertificateException, IOException, KeyStoreException, ConfigurationException, NeuClearException {
super(args);
+
}
Index: PaymentReceiverTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-pay/src/test/org/neuclear/asset/receiver/PaymentReceiverTest.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** PaymentReceiverTest.java 1 Dec 2003 15:42:55 -0000 1.9
--- PaymentReceiverTest.java 10 Dec 2003 23:52:39 -0000 1.10
***************
*** 48,51 ****
--- 48,58 ----
$Id$
$Log$
+ Revision 1.10 2003/12/10 23:52:39 pelle
+ Did some cleaning up in the builders
+ Fixed some stuff in IdentityCreator
+ New maven goal to create executable jarapp
+ We are close to 0.8 final of ID, 0.11 final of XMLSIG and 0.5 of commons.
+ Will release shortly.
+
Revision 1.9 2003/12/01 15:42:55 pelle
*** empty log message ***
***************
*** 70,74 ****
Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit.
SignedNamedObject now contains the full xml which is returned with getEncoded()
! This means that it is now possible to further send on or process a SignedNamedObject, leaving
NamedObjectBuilder for its original purposes of purely generating new Contracts.
NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it.
--- 77,81 ----
Refactored the relationship between SignedNamedObject and NamedObjectBuilder a bit.
SignedNamedObject now contains the full xml which is returned with getEncoded()
! This means that it is now possible to further receive on or process a SignedNamedObject, leaving
NamedObjectBuilder for its original purposes of purely generating new Contracts.
NamedObjectBuilder.sign() now returns a SignedNamedObject which is the prefered way of processing it.
|