|
From: <pe...@us...> - 2003-11-22 00:23:50
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id
In directory sc8-pr-cvs1:/tmp/cvs-serv17112/src/java/org/neuclear/id
Modified Files:
SignatureRequest.java
Log Message:
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.
Index: SignatureRequest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/SignatureRequest.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SignatureRequest.java 21 Nov 2003 13:57:27 -0000 1.7
--- SignatureRequest.java 22 Nov 2003 00:23:47 -0000 1.8
***************
*** 8,13 ****
import org.neuclear.xml.xmlsec.XMLSecurityException;
- import java.sql.Timestamp;
-
/*
NeuClear Distributed Transaction Clearing Platform
--- 8,11 ----
***************
*** 30,33 ****
--- 28,37 ----
$Id$
$Log$
+ Revision 1.8 2003/11/22 00:23:47 pelle
+ 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.
+
Revision 1.7 2003/11/21 13:57:27 pelle
Changed some mutable fields in immutable classes, making them truely immutable. Thus safer.
***************
*** 76,81 ****
* The SignatureRequest would typically be created using a SignatureRequestBuilder buy
* the Requesting site. The Users Signature service would present it to the user who signs it.
! *
! *
* User: pelleb
* Date: Nov 6, 2003
--- 80,85 ----
* The SignatureRequest would typically be created using a SignatureRequestBuilder buy
* the Requesting site. The Users Signature service would present it to the user who signs it.
! * <p/>
! * <p/>
* User: pelleb
* Date: Nov 6, 2003
***************
*** 90,103 ****
}
! public final String getUserid() {
return userid;
}
public final NamedObjectBuilder getUnsigned() {
! try {
! return (NamedObjectBuilder) unsigned.clone();
! } catch (CloneNotSupportedException e) {
! throw new RuntimeException(e);
! }
}
--- 94,103 ----
}
! public final String getUserid() {
return userid;
}
public final NamedObjectBuilder getUnsigned() {
! return (NamedObjectBuilder) unsigned.clone();
}
|