|
From: <pe...@us...> - 2003-11-18 23:35:48
|
Update of /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id
In directory sc8-pr-cvs1:/tmp/cvs-serv4327/src/java/org/neuclear/id
Modified Files:
NSTools.java
Log Message:
Payment Web Application is getting there.
Index: NSTools.java
===================================================================
RCS file: /cvsroot/neuclear/neuclear-id/src/java/org/neuclear/id/NSTools.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** NSTools.java 11 Nov 2003 21:18:43 -0000 1.13
--- NSTools.java 18 Nov 2003 23:35:45 -0000 1.14
***************
*** 2,5 ****
--- 2,8 ----
* $Id$
* $Log$
+ * Revision 1.14 2003/11/18 23:35:45 pelle
+ * Payment Web Application is getting there.
+ *
* Revision 1.13 2003/11/11 21:18:43 pelle
* Further vital reshuffling.
***************
*** 143,148 ****
import org.dom4j.Namespace;
import org.neuclear.commons.NeuClearException;
- import org.neuclear.commons.crypto.CryptoTools;
import org.neuclear.commons.Utility;
import java.util.Random;
--- 146,151 ----
import org.dom4j.Namespace;
import org.neuclear.commons.NeuClearException;
import org.neuclear.commons.Utility;
+ import org.neuclear.commons.crypto.CryptoTools;
import java.util.Random;
***************
*** 163,167 ****
public static String normalizeNameURI(String name) throws NeuClearException {
if (!isValidName(name))
! throw new NeuClearException("Name: '" + name + "' is not valid");
if (!name.startsWith("neu://"))
return "neu:/" + name;
--- 166,170 ----
public static String normalizeNameURI(String name) throws NeuClearException {
if (!isValidName(name))
! throw new InvalidNamedObject("Name: '" + name + "' is not valid");
if (!name.startsWith("neu://"))
return "neu:/" + name;
|