|
From: <pe...@us...> - 2003-12-20 00:21:22
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/builders
In directory sc8-pr-cvs1:/tmp/cvs-serv10463/src/java/org/neuclear/id/builders
Modified Files:
NamedObjectBuilder.java
Log Message:
overwrote the standard Object.toString(), hashCode() and equals() methods for SignedNamedObject/Core
fixed cactus tests
Added TransferRequestServlet
Added cactus tests to pay
Index: NamedObjectBuilder.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/builders/NamedObjectBuilder.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** NamedObjectBuilder.java 19 Dec 2003 18:03:34 -0000 1.20
--- NamedObjectBuilder.java 20 Dec 2003 00:21:19 -0000 1.21
***************
*** 2,5 ****
--- 2,11 ----
* $Id$
* $Log$
+ * Revision 1.21 2003/12/20 00:21:19 pelle
+ * overwrote the standard Object.toString(), hashCode() and equals() methods for SignedNamedObject/Core
+ * fixed cactus tests
+ * Added TransferRequestServlet
+ * Added cactus tests to pay
+ *
* Revision 1.20 2003/12/19 18:03:34 pelle
* Revamped a lot of exception handling throughout the framework, it has been simplified in most places:
***************
*** 235,239 ****
* This simple wrapper takes most of the contents of a NamedObject and puts it into a Serializable form that can be signed.
*/
! public class NamedObjectBuilder extends SignedElement implements Named, Cloneable {
protected NamedObjectBuilder(final String name, final String tagName, final String prefix, final String nsURI) throws InvalidNamedObjectException {
super(tagName, prefix, nsURI);
--- 241,245 ----
* This simple wrapper takes most of the contents of a NamedObject and puts it into a Serializable form that can be signed.
*/
! public class NamedObjectBuilder extends SignedElement implements Cloneable {
protected NamedObjectBuilder(final String name, final String tagName, final String prefix, final String nsURI) throws InvalidNamedObjectException {
super(tagName, prefix, nsURI);
|