|
From: <pe...@us...> - 2003-12-16 15:05:03
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/verifier
In directory sc8-pr-cvs1:/tmp/cvs-serv10766/src/java/org/neuclear/id/verifier
Modified Files:
VerifyingReader.java
Log Message:
Added SignedMessage contract for signing simple textual contracts.
Added NeuSender, updated SmtpSender and Sender to take plain email addresses (without the mailto:)
Added AbstractObjectCreationTest to make it quicker to write unit tests to verify
NamedObjectBuilder/SignedNamedObject Pairs.
Sample application has been expanded with a basic email application.
Updated docs for sample web app.
Added missing LGPL LICENSE.txt files to signer and sample app
Index: VerifyingReader.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/verifier/VerifyingReader.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** VerifyingReader.java 10 Dec 2003 23:58:51 -0000 1.15
--- VerifyingReader.java 16 Dec 2003 15:05:00 -0000 1.16
***************
*** 32,35 ****
--- 32,44 ----
$Id$
$Log$
+ Revision 1.16 2003/12/16 15:05:00 pelle
+ Added SignedMessage contract for signing simple textual contracts.
+ Added NeuSender, updated SmtpSender and Sender to take plain email addresses (without the mailto:)
+ Added AbstractObjectCreationTest to make it quicker to write unit tests to verify
+ NamedObjectBuilder/SignedNamedObject Pairs.
+ Sample application has been expanded with a basic email application.
+ Updated docs for sample web app.
+ Added missing LGPL LICENSE.txt files to signer and sample app
+
Revision 1.15 2003/12/10 23:58:51 pelle
Did some cleaning up in the builders
***************
*** 134,137 ****
--- 143,147 ----
readers.put(AuthenticationTicket.TAG_NAME, new AuthenticationTicket.Reader());
readers.put(SignatureRequest.SIGREQUEST_TAG, new SignatureRequest.Reader());
+ readers.put(SignedMessage.TAG_NAME, new SignedMessage.Reader());
defaultReader = new SignedNamedObject.Reader();
}
|