|
From: <pe...@us...> - 2004-01-11 00:39:23
|
Update of /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml/xmlsec
In directory sc8-pr-cvs1:/tmp/cvs-serv22548/src/java/org/neuclear/xml/xmlsec
Modified Files:
SignedElement.java
Log Message:
Cleaned up the schemas even more they now all verifiy.
The Order/Receipt pairs for neuclear pay, should now work. They all have Readers using the latest
Schema.
The TransferBuilders are done and the ExchangeBuilders are nearly there.
The new EmbeddedSignedNamedObject builder is useful for creating new Receipts. The new ReceiptBuilder uses
this to create the embedded transaction.
ExchangeOrders now have the concept of BidItem's, you could create an ExchangeOrder bidding on various items at the same time, to be exchanged as one atomic multiparty exchange.
Still doesnt build yet, but very close now ;-)
Index: SignedElement.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-xmlsig/src/java/org/neuclear/xml/xmlsec/SignedElement.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** SignedElement.java 8 Jan 2004 23:38:06 -0000 1.7
--- SignedElement.java 11 Jan 2004 00:39:19 -0000 1.8
***************
*** 1,4 ****
--- 1,14 ----
/* $Id$
* $Log$
+ * Revision 1.8 2004/01/11 00:39:19 pelle
+ * Cleaned up the schemas even more they now all verifiy.
+ * The Order/Receipt pairs for neuclear pay, should now work. They all have Readers using the latest
+ * Schema.
+ * The TransferBuilders are done and the ExchangeBuilders are nearly there.
+ * The new EmbeddedSignedNamedObject builder is useful for creating new Receipts. The new ReceiptBuilder uses
+ * this to create the embedded transaction.
+ * ExchangeOrders now have the concept of BidItem's, you could create an ExchangeOrder bidding on various items at the same time, to be exchanged as one atomic multiparty exchange.
+ * Still doesnt build yet, but very close now ;-)
+ *
* Revision 1.7 2004/01/08 23:38:06 pelle
* XMLSignature can now give you the Signing key and the id of the signer.
***************
*** 249,253 ****
* Returns the URI of the Element. This is used in the signing process.
*/
! public abstract String getURI() throws XMLSecurityException;
}
--- 259,265 ----
* Returns the URI of the Element. This is used in the signing process.
*/
! public String getURI() throws XMLSecurityException {
! return "#" ;
! }
}
|