[Mulgara-svn] r248 - in trunk/docs: . site-src/integration site-src/overview site-src/system

ronald at mulgara.org ronald at mulgara.org
Mon Apr 23 00:56:23 UTC 2007


Author: ronald
Date: 2007-04-22 19:56:22 -0500 (Sun, 22 Apr 2007)
New Revision: 248

Modified:
   trunk/docs/overview.xsl
   trunk/docs/site-src/integration/contenthandlers.html
   trunk/docs/site-src/integration/contenthandlersdev.html
   trunk/docs/site-src/integration/resolverwrapper.html
   trunk/docs/site-src/integration/resolverwrite.html
   trunk/docs/site-src/integration/statements.html
   trunk/docs/site-src/overview/aboutsite.html
   trunk/docs/site-src/overview/contact.html
   trunk/docs/site-src/system/driver.html
   trunk/docs/site-src/system/itqlbean.html
Log:
Updated old references to kowari packages, server, mailing-list, etc to refer
to mulgara instead.


Modified: trunk/docs/overview.xsl
===================================================================
--- trunk/docs/overview.xsl	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/overview.xsl	2007-04-23 00:56:22 UTC (rev 248)
@@ -25,14 +25,14 @@
 <xsl:template match="/">
 <html>
 <head>
-<title>Kowari Metadata Store Project</title>
+<title>Mulgara Metadata Store Project</title>
 </head>
 <body>
 <abstract>
-The Kowari Metadata Store project.
+The Mulgara Metadata Store project.
 </abstract>
 <p>
-The Kowari Metadata Store project is an implementation of a
+The Mulgara Metadata Store project is an implementation of a
 distributed secure RDF store. More generally it supports the storage
 of arbitrary data as triples.
 </p>

Modified: trunk/docs/site-src/integration/contenthandlers.html
===================================================================
--- trunk/docs/site-src/integration/contenthandlers.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/integration/contenthandlers.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -66,7 +66,7 @@
 
 <p>Once the usage and structure for the handler is set, the interface can be implemented. The MP3 content handler performs its parsing as part of the statements container so not much implementing is required. The implementation looks something like the following (extracted from <code>MP3ContentHandler.java</code>):</p>
 
-<p class="commandtext">package org.kowari.content.mp3;<br />
+<p class="commandtext">package org.mulgara.content.mp3;<br />
 <br />
 // Java 2 standard packages<br />
 import java.io.InputStream;<br />
@@ -81,12 +81,12 @@
 import org.apache.log4j.Logger; // Apache Log4J<br />
 <br />
 // Local packages<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.ContentHandler;<br />
-import org.kowari.content.ContentHandlerException;<br />
-import org.kowari.resolver.spi.ResolverSession;<br />
-import org.kowari.resolver.spi.Statements;<br />
-import org.kowari.query.TuplesException;<br />
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.ContentHandler;<br />
+import org.mulgara.content.ContentHandlerException;<br />
+import org.mulgara.resolver.spi.ResolverSession;<br />
+import org.mulgara.resolver.spi.Statements;<br />
+import org.mulgara.query.TuplesException;<br />
 <br />
 public class MP3ContentHandler implements ContentHandler {<br />
 <br />
@@ -170,7 +170,7 @@
 
 <p>An analysis of the class is as follows:</p>
 
-<p class="indentcommandtext">package org.kowari.content.mp3;<br />
+<p class="indentcommandtext">package org.mulgara.content.mp3;<br />
 <br />
 // Java 2 standard packages<br />
 import java.io.InputStream;<br />
@@ -185,15 +185,15 @@
 import org.apache.log4j.Logger; // Apache Log4J<br />
 <br />
 // Local packages<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.ContentHandler;<br />
-import org.kowari.content.ContentHandlerException;<br />
-import org.kowari.resolver.spi.ResolverSession;<br />
-import org.kowari.resolver.spi.Statements;<br />
-import org.kowari.query.TuplesException;</p>
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.ContentHandler;<br />
+import org.mulgara.content.ContentHandlerException;<br />
+import org.mulgara.resolver.spi.ResolverSession;<br />
+import org.mulgara.resolver.spi.Statements;<br />
+import org.mulgara.query.TuplesException;</p>
 
 <p class="indent">There are no specific requirements for the packaging of the implementation but it is recommended that related classes be kept in the same package for easier implementing. For the interface, you also need to import:</p>
-<ul><li><code>org.kowari.content.Content</code></li><li><code>org.kowari.content.ContentHandler</code></li><li><code>org.kowari.content.ContentHandlerException</code></li><li><code>org.kowari.resolver.spi.ResolverSession</code></li><li><code>org.kowari.resolver.spi.Statements</code></li></ul>
+<ul><li><code>org.mulgara.content.Content</code></li><li><code>org.mulgara.content.ContentHandler</code></li><li><code>org.mulgara.content.ContentHandlerException</code></li><li><code>org.mulgara.resolver.spi.ResolverSession</code></li><li><code>org.mulgara.resolver.spi.Statements</code></li></ul>
 <p class="indent">In most cases the <code>javax.activation.MimeType</code> class also needs to be imported to do proper mime type handling. Any supporting classes for the implementation should also be imported.</p>
 
 <p class="indentcommandtext">public class MP3ContentHandler implements ContentHandler {</p>

Modified: trunk/docs/site-src/integration/contenthandlersdev.html
===================================================================
--- trunk/docs/site-src/integration/contenthandlersdev.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/integration/contenthandlersdev.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -55,7 +55,7 @@
 </li><li>Statements
 <p class="listcontinue">Hold and navigate the triples generated by the parser.</p>
 </li></ol>
-<p>The following sections outline how to create these components. The source files used for the content handler part of the tutorial are located in the <code>src/jar/content-mp3/java/</code> directory of your Kowari installation.</p>
+<p>The following sections outline how to create these components. The source files used for the content handler part of the tutorial are located in the <code>src/jar/content-mp3/java/</code> directory of your Mulgara installation.</p>
 
 			
     

Modified: trunk/docs/site-src/integration/resolverwrapper.html
===================================================================
--- trunk/docs/site-src/integration/resolverwrapper.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/integration/resolverwrapper.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -48,13 +48,13 @@
 
 <p><code>Content</code> implementations are compulsory for any protocol resolver. Without one the resolver has no way of allowing a handler access to the data that needs converting to <code>Statements</code>. Normally you can use the connection methods on the URL class to obtain an input stream from the source content, but you are also managing the https protocol, which is more advanced. To overcome this, the <code>HttpConnection</code> class of the apache commons <code>httpclient</code> is used to instantiate and maintain a connection to the content source. The implementation looks something like the following (extracted from <code>HttpContent.java</code>):</p>
 
-<p class="commandtext">package org.kowari.resolver.http;<br />
+<p class="commandtext">package org.mulgara.resolver.http;<br />
 
 <br />
 
 //Local packages<br />
 
-import org.kowari.content.Content;<br />
+import org.mulgara.content.Content;<br />
 
 <br />
 
@@ -574,7 +574,7 @@
 
   /*<br />
 
-   * @see org.kowari.content.Content#getContentType()<br />
+   * @see org.mulgara.content.Content#getContentType()<br />
 
    */<br />
 
@@ -744,13 +744,13 @@
 
 <p>An analysis of the class is as follows:</p>
 
-<p class="indentcommandtext">package org.kowari.resolver.http;<br />
+<p class="indentcommandtext">package org.mulgara.resolver.http;<br />
 
 <br />
 
 //Local packages<br />
 
-import org.kowari.content.Content;<br />
+import org.mulgara.content.Content;<br />
 
 <br />
 
@@ -796,7 +796,7 @@
 
 import org.apache.log4j.Logger;</p>
 
-<p class="indent">The packaging for the content implementation is not required to be of any particular format. However, for the sake of neatness and ease of coding, it is recommended that the implementation be in the same package as your resolver implementation. The <code>org.kowari.content.Content</code> package requires importing to provide access to the <code>Content</code> interface, along with the packages <code>java.io.InputStream</code>, <code>java.io.IOException</code>, <code>java.util.Map</code>, <code>javax.activation.MimeType</code> and <code>java.net.URI</code>, which are used in the interface. Any other imports depend on your implementation of the interface.</p>
+<p class="indent">The packaging for the content implementation is not required to be of any particular format. However, for the sake of neatness and ease of coding, it is recommended that the implementation be in the same package as your resolver implementation. The <code>org.mulgara.content.Content</code> package requires importing to provide access to the <code>Content</code> interface, along with the packages <code>java.io.InputStream</code>, <code>java.io.IOException</code>, <code>java.util.Map</code>, <code>javax.activation.MimeType</code> and <code>java.net.URI</code>, which are used in the interface. Any other imports depend on your implementation of the interface.</p>
 
 <p class="indentcommandtext">          public class HttpContent implements Content {</p>
 
@@ -879,7 +879,7 @@
 
 <p class="indentcommandtext">/*<br />
 
-   * @see org.kowari.content.Content#getContentType()<br />
+   * @see org.mulgara.content.Content#getContentType()<br />
 
    */<br />
 

Modified: trunk/docs/site-src/integration/resolverwrite.html
===================================================================
--- trunk/docs/site-src/integration/resolverwrite.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/integration/resolverwrite.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -51,7 +51,7 @@
 
 <p>The following source is how the http protocol resolver is written (extracted from <code>HttpResolver.java</code>):</p>
 
-<p class="commandtext">package org.kowari.resolver.http;<br />
+<p class="commandtext">package org.mulgara.resolver.http;<br />
 <br />
 // Java 2 standard packages<br />
 import java.net.*;<br />
@@ -63,12 +63,12 @@
 import org.jrdf.graph.URIReference;<br />
 <br />
 // Locally written packages<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.ContentHandler;<br />
-import org.kowari.content.ContentHandlerManager;<br />
-import org.kowari.content.ContentHandlerException;<br />
-import org.kowari.content.ContentResolver;<br />
-import org.kowari.resolver.spi.*;<br />
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.ContentHandler;<br />
+import org.mulgara.content.ContentHandlerManager;<br />
+import org.mulgara.content.ContentHandlerException;<br />
+import org.mulgara.content.ContentResolver;<br />
+import org.mulgara.resolver.spi.*;<br />
 <br />
 public class HttpResolver extends ContentResolver {<br />
   /**<br />
@@ -165,7 +165,7 @@
 
 <p>An analysis of the class is as follows:</p>
 
-<p class="indentcommandtext">package org.kowari.resolver.http;<br />
+<p class="indentcommandtext">package org.mulgara.resolver.http;<br />
 <br />
 // Java 2 standard packages<br />
 import java.net.*;<br />
@@ -177,12 +177,12 @@
 import org.jrdf.graph.URIReference;<br />
 <br />
 // Locally written packages<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.ContentHandler;<br />
-import org.kowari.content.ContentHandlerManager;<br />
-import org.kowari.content.ContentHandlerException;<br />
-import org.kowari.content.ContentResolver;<br />
-import org.kowari.resolver.spi.*;</p>
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.ContentHandler;<br />
+import org.mulgara.content.ContentHandlerManager;<br />
+import org.mulgara.content.ContentHandlerException;<br />
+import org.mulgara.content.ContentResolver;<br />
+import org.mulgara.resolver.spi.*;</p>
 
 <p class="indent">Due to the way resolvers are constructed, the packaging should be set up so that they are always in the same package as their factory. Resolvers also require access to the <code>Resolver</code> SPI and tuples packages. Extra imports depend on your specific implementation.</p>
 

Modified: trunk/docs/site-src/integration/statements.html
===================================================================
--- trunk/docs/site-src/integration/statements.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/integration/statements.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -51,7 +51,7 @@
 
 <p>After deciding on the best method of navigating the generated statements, it is relatively straightforward to implement the interface. The following code is the MP3 implementation using a JRDF <code>Graph</code> (see <code>MP3Statements.java</code>):</p>
 
-<p class="commandtext">package org.kowari.content.mp3;<br />
+<p class="commandtext">package org.mulgara.content.mp3;<br />
 <br />
 // Java 2 standard packages<br />
 import java.io.*;<br />
@@ -73,21 +73,21 @@
 import org.farng.mp3.TagException;<br />
 <br />
 // Locally written packages<br />
-import org.kowari.query.Constraint;<br />
-import org.kowari.query.QueryException;<br />
-import org.kowari.query.TuplesException;<br />
-import org.kowari.query.Variable;<br />
-import org.kowari.query.rdf.*;<br />
-import org.kowari.resolver.spi.LocalizeException;<br />
-import org.kowari.resolver.spi.Statements;<br />
-import org.kowari.resolver.spi.ResolverSession;<br />
-import org.kowari.store.StoreException;<br />
-import org.kowari.store.tuples.AbstractTuples;<br />
-import org.kowari.store.tuples.Tuples;<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.mp3.parser.*;<br />
-import org.kowari.content.mp3.parser.exception.*;<br />
-import org.kowari.content.mp3.parser.api.*;<br />
+import org.mulgara.query.Constraint;<br />
+import org.mulgara.query.QueryException;<br />
+import org.mulgara.query.TuplesException;<br />
+import org.mulgara.query.Variable;<br />
+import org.mulgara.query.rdf.*;<br />
+import org.mulgara.resolver.spi.LocalizeException;<br />
+import org.mulgara.resolver.spi.Statements;<br />
+import org.mulgara.resolver.spi.ResolverSession;<br />
+import org.mulgara.store.StoreException;<br />
+import org.mulgara.store.tuples.AbstractTuples;<br />
+import org.mulgara.store.tuples.Tuples;<br />
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.mp3.parser.*;<br />
+import org.mulgara.content.mp3.parser.exception.*;<br />
+import org.mulgara.content.mp3.parser.api.*;<br />
 <br />
 public class MP3Statements extends AbstractTuples implements Statements {<br />
 <br />
@@ -649,7 +649,7 @@
 
 <p>An analysis of the class is as follows:</p>
 
-<p class="indentcommandtext">package org.kowari.content.mp3;<br />
+<p class="indentcommandtext">package org.mulgara.content.mp3;<br />
 <br />
 // Java 2 standard packages<br />
 import java.io.*;<br />
@@ -671,24 +671,24 @@
 import org.farng.mp3.TagException;<br />
 <br />
 // Locally written packages<br />
-import org.kowari.query.Constraint;<br />
-import org.kowari.query.QueryException;<br />
-import org.kowari.query.TuplesException;<br />
-import org.kowari.query.Variable;<br />
-import org.kowari.query.rdf.*;<br />
-import org.kowari.resolver.spi.LocalizeException;<br />
-import org.kowari.resolver.spi.Statements;<br />
-import org.kowari.resolver.spi.ResolverSession;<br />
-import org.kowari.store.StoreException;<br />
-import org.kowari.store.tuples.AbstractTuples;<br />
-import org.kowari.store.tuples.Tuples;<br />
-import org.kowari.content.Content;<br />
-import org.kowari.content.mp3.parser.*;<br />
-import org.kowari.content.mp3.parser.exception.*;<br />
-import org.kowari.content.mp3.parser.api.*;</p>
+import org.mulgara.query.Constraint;<br />
+import org.mulgara.query.QueryException;<br />
+import org.mulgara.query.TuplesException;<br />
+import org.mulgara.query.Variable;<br />
+import org.mulgara.query.rdf.*;<br />
+import org.mulgara.resolver.spi.LocalizeException;<br />
+import org.mulgara.resolver.spi.Statements;<br />
+import org.mulgara.resolver.spi.ResolverSession;<br />
+import org.mulgara.store.StoreException;<br />
+import org.mulgara.store.tuples.AbstractTuples;<br />
+import org.mulgara.store.tuples.Tuples;<br />
+import org.mulgara.content.Content;<br />
+import org.mulgara.content.mp3.parser.*;<br />
+import org.mulgara.content.mp3.parser.exception.*;<br />
+import org.mulgara.content.mp3.parser.api.*;</p>
 
 <p class="indent">There are no specific requirements for the packaging of the <code>Statements</code> implementation but it is recommended that you keep it in the same package as your <code>ContentHandler</code> implementation. You must import the following classes:</p>
-<ul><li><code>org.kowari.store.tuples.AbstractTuples</code></li><li><code>org.kowari.resolver.spi.Statements</code></li><li><code>org.kowari.query.TuplesException</code></li><li><code>org.kowari.query.Variable</code></li></ul>
+<ul><li><code>org.mulgara.store.tuples.AbstractTuples</code></li><li><code>org.mulgara.resolver.spi.Statements</code></li><li><code>org.mulgara.query.TuplesException</code></li><li><code>org.mulgara.query.Variable</code></li></ul>
 <p class="indent">Any supporting classes can also be imported.</p>
 
 <p class="indentcommandtext">public class MP3Statements extends AbstractTuples implements Statements {</p>

Modified: trunk/docs/site-src/overview/aboutsite.html
===================================================================
--- trunk/docs/site-src/overview/aboutsite.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/overview/aboutsite.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -38,14 +38,14 @@
 
 <h2>About this site</h2>
 
-<p>kowari.org is the Web site of the Mulgara Project.</p>
+<p>mulgara.org is the Web site of the Mulgara Project.</p>
 
 
 
 <div class="anchor"><a name="copyright">&nbsp;</a></div>
 <h3>copyright</h3>
 
-<p>This site and its contents are copyright &copy; 2003 Kowari Project and are licensed under a <a class="jumptemplate" title="" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">Creative Commons</a> License. This means that you may use (take) whatever you like from this site, so long as a) you acknowledge that you took it from this site, b) you do not use it for commercial use and c) you allow others to use any derivative works under <a class="jumptemplate" title="" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">this license</a>.</p>
+<p>This site and its contents are copyright &copy; 2003-2007 Mulgara Project and are licensed under a <a class="jumptemplate" title="" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">Creative Commons</a> License. This means that you may use (take) whatever you like from this site, so long as a) you acknowledge that you took it from this site, b) you do not use it for commercial use and c) you allow others to use any derivative works under <a class="jumptemplate" title="" href="http://creativecommons.org/licenses/by-nc-sa/2.0/">this license</a>.</p>
 
 <div class="anchor"><a name="htmlcss">&nbsp;</a></div>
 <h3>HTML and CSS</h3>

Modified: trunk/docs/site-src/overview/contact.html
===================================================================
--- trunk/docs/site-src/overview/contact.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/overview/contact.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -38,7 +38,7 @@
 <div class="anchor"><a name="mailing">&nbsp;</a></div>
 <h2>Mailing Lists</h2>
 
-<p>Discussions on Mulgara are held on the <a class="internetlinktemplate" title="" href="http://lists.sourceforge.net/lists/listinfo/kowari-general">kowari-general</a> mailing list. Please do not send HTML, rich text, or stylized mail to the list. If you use Mail, Outlook, Outlook Express or Eudora, you may be sending HTML mail by default. There is usually a setting that will allow you to send plain text mail instead.</p>
+<p>Discussions on Mulgara are held on the <a class="internetlinktemplate" title="" href="http://mulgara.org/mailman/listinfo/mulgara-general">mulgara-general</a> mailing list. Please do not send HTML, rich text, or stylized mail to the list. If you use Mail, Outlook, Outlook Express or Eudora, you may be sending HTML mail by default. There is usually a setting that will allow you to send plain text mail instead.</p>
 
 
 <div class="anchor"><a name="bugs">&nbsp;</a></div>

Modified: trunk/docs/site-src/system/driver.html
===================================================================
--- trunk/docs/site-src/system/driver.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/system/driver.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -42,7 +42,7 @@
 
 <h2>Mulgara Driver</h2>
 
-<p>The Mulgara driver provides a means to communicate directly with a Kowari server. It is employed (at some level) by all higher-level components including the <a id="h551" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html">iTQL</a><sup><a id="h551_2" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html">TM</a></sup><a id="h551_3" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html"> interpreter</a> and the <a id="h954" class="documentlinktemplate" title="iTQL Bean" href="/system/itqlbean.html">iTQL Bean</a>. The driver is responsible for query resolution including issuing queries to remote and local Kowari servers and coordinating responses back to clients. The driver communicates with remote servers via <a class="internetlinktemplate" title="" href="http://www.w3.org/tr/soap">SOAP</a> or <a class="internetlinktemplate" title="" href="http://java.sun.com/products/jdk/rmi/">RMI</a>.</p>
+<p>The Mulgara driver provides a means to communicate directly with a Mulgara server. It is employed (at some level) by all higher-level components including the <a id="h551" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html">iTQL</a><sup><a id="h551_2" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html">TM</a></sup><a id="h551_3" class="documentlinktemplate" title="iTQL Shell" href="/system/itqlshell.html"> interpreter</a> and the <a id="h954" class="documentlinktemplate" title="iTQL Bean" href="/system/itqlbean.html">iTQL Bean</a>. The driver is responsible for query resolution including issuing queries to remote and local Mulgara servers and coordinating responses back to clients. The driver communicates with remote servers via <a class="internetlinktemplate" title="" href="http://www.w3.org/tr/soap">SOAP</a> or <a class="internetlinktemplate" title="" href="http://java.sun.com/products/jdk/rmi/">RMI</a>.</p>
 
 <p>For example, in query resolution, query handlers are invoked for communicating with servers behind SOAP or RMI connections. Each of these communication methods can be secured using conventional means including SSL, TLS and SSH.</p>
 

Modified: trunk/docs/site-src/system/itqlbean.html
===================================================================
--- trunk/docs/site-src/system/itqlbean.html	2007-04-20 21:17:42 UTC (rev 247)
+++ trunk/docs/site-src/system/itqlbean.html	2007-04-23 00:56:22 UTC (rev 248)
@@ -46,16 +46,16 @@
 
 <p>The iTQL bean is suitable for integration with text-based console applications, graphical user interfaces (swing applications, for example) and JavaServer Pages<sup>TM</sup> (JSP).</p>
 
-<p>As well as the standard JavaBean properties and methods, the iTQL bean exposes the methods as listed in the file <a class="" title="" href="api/org/kowari/itql/ItqlInterpreterBean.html">ItqlInterpreterBean</a>.</p>
+<p>As well as the standard JavaBean properties and methods, the iTQL bean exposes the methods as listed in the file <a class="" title="" href="api/org/mulgara/itql/ItqlInterpreterBean.html">ItqlInterpreterBean</a>.</p>
 
-<p>The following example uses the iTQL bean to query a Kowari server and list the contents of a Kowari model.</p>
+<p>The following example uses the iTQL bean to query a Mulgara server and list the contents of a Mulgara model.</p>
 
 <p class="commandtext">// Standard Java Packages<br />
 import java.sql.*;<br />
 <br />
-// Kowari packages<br />
-import org.kowari.itql.ItqlInterpreterBean;<br />
-import org.kowari.query.Answer;<br />
+// Mulgara packages<br />
+import org.mulgara.itql.ItqlInterpreterBean;<br />
+import org.mulgara.query.Answer;<br />
 <br />
 try {<br />
 <br />




More information about the Mulgara-svn mailing list