|
From: <pe...@us...> - 2003-12-16 15:04:46
|
Update of /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/servlets In directory sc8-pr-cvs1:/tmp/cvs-serv10718/src/java/org/neuclear/commons/servlets Modified Files: ServletTools.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: ServletTools.java =================================================================== RCS file: /cvsroot/neuclear/neuclear-commons/src/java/org/neuclear/commons/servlets/ServletTools.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ServletTools.java 15 Dec 2003 23:32:40 -0000 1.4 --- ServletTools.java 16 Dec 2003 15:04:43 -0000 1.5 *************** *** 1,4 **** --- 1,13 ---- /* $Id$ * $Log$ + * Revision 1.5 2003/12/16 15:04:43 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.4 2003/12/15 23:32:40 pelle * added ServletTools.getInitParam() which first tries the ServletConfig, then the context config. |