[Mulgara-svn] r1027 - trunk/src/jar/resolver/java/org/mulgara/resolver

pag at mulgara.org pag at mulgara.org
Thu Jun 26 19:14:27 UTC 2008


Author: pag
Date: 2008-06-26 12:14:26 -0700 (Thu, 26 Jun 2008)
New Revision: 1027

Modified:
   trunk/src/jar/resolver/java/org/mulgara/resolver/CreateModelOperation.java
Log:
Updated verifyGraphUriIsRelative to verifyGraphUri as this is a more correct description of the tests that will be performed

Modified: trunk/src/jar/resolver/java/org/mulgara/resolver/CreateModelOperation.java
===================================================================
--- trunk/src/jar/resolver/java/org/mulgara/resolver/CreateModelOperation.java	2008-06-26 19:13:40 UTC (rev 1026)
+++ trunk/src/jar/resolver/java/org/mulgara/resolver/CreateModelOperation.java	2008-06-26 19:14:26 UTC (rev 1027)
@@ -96,7 +96,7 @@
     // Default to the system graph type
     if (graphTypeURI == null) graphTypeURI = metadata.getSystemModelTypeURI();
 
-    verifyGraphUriIsRelative(graphURI, metadata);
+    verifyGraphUri(graphURI, metadata);
     
     // Look up the resolver factory for the model type
     ResolverFactory resolverFactory = operationContext.findModelTypeResolverFactory(graphTypeURI);
@@ -175,7 +175,7 @@
    * @param metadata
    * @throws QueryException
    */
-  private void verifyGraphUriIsRelative(URI graphURI, DatabaseMetadata metadata) throws QueryException {
+  private void verifyGraphUri(URI graphURI, DatabaseMetadata metadata) throws QueryException {
     // only both if this is a scheme which uses fragments - for the moment only RMI
     if (!fragmentScheme(graphURI)) return;
 




More information about the Mulgara-svn mailing list