|
23 | 23 | databases and supports the development of portable, reusable applications. eXist's |
24 | 24 | implementation of the XML:DB standards follows the Xindice implementation, and |
25 | 25 | conforms to the latest working drafts put forth by the <ulink url="http://xmldb-org.sourceforge.net/xapi/">XML:DB Initiative</ulink>. For more |
26 | | - information, refer to the <ulink url="api/index.html">Javadocs for this API</ulink>.</para> |
| 26 | + information, refer to the <ulink url="http://exist-db.org/api/index.html">Javadocs for this API</ulink>.</para> |
27 | 27 | <para>The basic components employed by the XML:DB API are <emphasis>drivers</emphasis>, |
28 | 28 | <emphasis>collections</emphasis>, <emphasis>resources</emphasis> and |
29 | 29 | <emphasis>services</emphasis>.</para> |
@@ -407,19 +407,19 @@ public class StoreExample { |
407 | 407 | <title>Additional Services</title> |
408 | 408 | <para>eXist provides several services in addition to those defined by the XML:DB |
409 | 409 | specification:</para> |
410 | | - <para>The <ulink url="api/org/exist/xmldb/UserManagementService.html">UserManagementService</ulink> service contains methods to manage users and |
| 410 | + <para>The <ulink url="http://exist-db.org/api/org/exist/xmldb/UserManagementService.html">UserManagementService</ulink> service contains methods to manage users and |
411 | 411 | handle permissions. These methods resemble common Unix commands such as |
412 | 412 | <methodname>chown</methodname> or <methodname>chmod</methodname>. As with |
413 | 413 | other services, <classname>UserManagementService</classname> can be retrieved |
414 | 414 | from a collection object, as in:</para> |
415 | 415 | <synopsis format="linespecific">UserManagementService service = |
416 | 416 | (UserManagementService)collection.getService("UserManagementService", "1.0");</synopsis> |
417 | | - <para>Another service called <ulink url="api/org/exist/xmldb/DatabaseInstanceManager.html">DatabaseInstanceManager</ulink>, provides a single method to shut down the |
| 417 | + <para>Another service called <ulink url="http://exist-db.org/api/org/exist/xmldb/DatabaseInstanceManager.html">DatabaseInstanceManager</ulink>, provides a single method to shut down the |
418 | 418 | database instance accessed by the driver. You have to be a member of the |
419 | 419 | <option>dba</option> user group to use this method or an exception will be |
420 | | - thrown. See the <ulink url="deployment.xml#embedded">Deployment Guide</ulink> |
| 420 | + thrown. See the <ulink url="deployment.xml#D2.4.12">Deployment Guide</ulink> |
421 | 421 | for an example.</para> |
422 | | - <para>Finally, interface <ulink url="api/org/exist/xmldb/IndexQueryService.html">IndexQueryService</ulink> supports access to the terms and elements |
| 422 | + <para>Finally, interface <ulink url="http://exist-db.org/api/org/exist/xmldb/IndexQueryService.html">IndexQueryService</ulink> supports access to the terms and elements |
423 | 423 | contained in eXist's internal index. Method getIndexedElements() returns a list |
424 | 424 | of element occurrences for the current collection. For each occurring element, |
425 | 425 | the element's name and a frequency count is returned.</para> |
|
0 commit comments