|
From: <pe...@us...> - 2004-01-12 22:39:29
|
Update of /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id
In directory sc8-pr-cvs1:/tmp/cvs-serv13078/src/test/org/neuclear/id
Modified Files:
SignedNamedCoreTest.java
Log Message:
Completed all the builders and contracts.
Added a new abstract Value class to contain either an amount or a list of serial numbers.
Now ready to finish off the AssetControllers.
Index: SignedNamedCoreTest.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/test/org/neuclear/id/SignedNamedCoreTest.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** SignedNamedCoreTest.java 11 Dec 2003 23:57:30 -0000 1.4
--- SignedNamedCoreTest.java 12 Jan 2004 22:39:26 -0000 1.5
***************
*** 6,10 ****
import org.neuclear.commons.crypto.signers.TestCaseSigner;
import org.neuclear.id.builders.AuthenticationTicketBuilder;
! import org.neuclear.id.builders.NamedObjectBuilder;
import org.neuclear.xml.XMLException;
--- 6,10 ----
import org.neuclear.commons.crypto.signers.TestCaseSigner;
import org.neuclear.id.builders.AuthenticationTicketBuilder;
! import org.neuclear.id.builders.Builder;
import org.neuclear.xml.XMLException;
***************
*** 32,35 ****
--- 32,40 ----
$Id$
$Log$
+ Revision 1.5 2004/01/12 22:39:26 pelle
+ Completed all the builders and contracts.
+ Added a new abstract Value class to contain either an amount or a list of serial numbers.
+ Now ready to finish off the AssetControllers.
+
Revision 1.4 2003/12/11 23:57:30 pelle
Trying to test the ReceiverServlet with cactus. Still no luck. Need to return a ElementProxy of some sort.
***************
*** 72,76 ****
public final void testRead() throws NeuClearException, GeneralSecurityException, XMLException, FileNotFoundException {
final String name = "neu://bob@test";
! final NamedObjectBuilder builder = new AuthenticationTicketBuilder(name, "neu://test", "http://slashdot.org");
final JCESigner signer = new TestCaseSigner();
builder.sign(name, signer);
--- 77,81 ----
public final void testRead() throws NeuClearException, GeneralSecurityException, XMLException, FileNotFoundException {
final String name = "neu://bob@test";
! final Builder builder = new AuthenticationTicketBuilder(name, "neu://test", "http://slashdot.org");
final JCESigner signer = new TestCaseSigner();
builder.sign(name, signer);
|