[Mulgara-svn] r473 - branches/nw-interface/src/jar/itql/java/org/mulgara/itql

pag at mulgara.org pag at mulgara.org
Thu Oct 11 17:10:17 UTC 2007


Author: pag
Date: 2007-10-11 12:10:16 -0500 (Thu, 11 Oct 2007)
New Revision: 473

Modified:
   branches/nw-interface/src/jar/itql/java/org/mulgara/itql/TqlAutoInterpreter.java
Log:
Added setAliasesInUse and clearLastException as deprecated methods for ItqlInterpreterBean

Modified: branches/nw-interface/src/jar/itql/java/org/mulgara/itql/TqlAutoInterpreter.java
===================================================================
--- branches/nw-interface/src/jar/itql/java/org/mulgara/itql/TqlAutoInterpreter.java	2007-10-11 17:08:54 UTC (rev 472)
+++ branches/nw-interface/src/jar/itql/java/org/mulgara/itql/TqlAutoInterpreter.java	2007-10-11 17:10:16 UTC (rev 473)
@@ -229,4 +229,22 @@
   }
   
   
+  /**
+   * Sets the current alias map.  Needs to treat the internal interpreter
+   * explicitly as a TqlInterpreter.
+   * @deprecated Available to ItqlInterpreterBean only to support legacy requests.
+   */
+  void setAliasesInUse(Map<String,URI> map) {
+    ((TqlInterpreter)interpreter).setAliasMap(map);
+  }
+  
+  
+  /**
+   * Clears the last exception.
+   * @deprecated Available to ItqlInterpreterBean only to support legacy requests.
+   */
+  void clearLastException() {
+    lastException = null;
+  }
+
 }




More information about the Mulgara-svn mailing list