2021-05-04 14:35:57 +00:00

1115 lines
59 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html class="default no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Community Solid Server - v0.9.0</title>
<meta name="description" content="Documentation for Community Solid Server - v0.9.0">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/css/main.css">
<script async src="assets/js/search.js" id="search-script"></script>
</head>
<body>
<header>
<div class="tsd-page-toolbar">
<div class="container">
<div class="table-wrap">
<div class="table-cell" id="tsd-search" data-index="assets/js/search.json" data-base=".">
<div class="field">
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
<input id="tsd-search-field" type="text" />
</div>
<ul class="results">
<li class="state loading">Preparing search index...</li>
<li class="state failure">The search index is not available</li>
</ul>
<a href="index.html" class="title">Community Solid Server - v0.9.0</a>
</div>
<div class="table-cell" id="tsd-widgets">
<div id="tsd-filter">
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
<div class="tsd-filter-group">
<div class="tsd-select" id="tsd-filter-visibility">
<span class="tsd-select-label">All</span>
<ul class="tsd-select-list">
<li data-value="public">Public</li>
<li data-value="protected">Public/Protected</li>
<li data-value="private" class="selected">All</li>
</ul>
</div>
<input type="checkbox" id="tsd-filter-inherited" checked />
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
<input type="checkbox" id="tsd-filter-externals" checked />
<label class="tsd-widget" for="tsd-filter-externals">Externals</label>
</div>
</div>
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
</div>
</div>
</div>
</div>
<div class="tsd-page-title">
<div class="container">
<h1>Community Solid Server - v0.9.0</h1>
</div>
</div>
</header>
<div class="container container-main">
<div class="row">
<div class="col-8 col-content">
<div class="tsd-panel tsd-typography">
<a href="#community-solid-server" id="community-solid-server" style="color: inherit; text-decoration: none;">
<h1>Community Solid Server</h1>
</a>
<p><a href="https://github.com/solid/community-server/actions"><img src="https://github.com/solid/community-server/workflows/CI/badge.svg" alt="Build Status"></a>
<a href="https://coveralls.io/github/solid/community-server"><img src="https://coveralls.io/repos/github/solid/community-server/badge.svg" alt="Coverage Status"></a>
<a href="https://www.npmjs.com/package/@solid/community-server"><img src="https://img.shields.io/npm/v/@solid/community-server" alt="npm version"></a></p>
<p><strong>An open and modular implementation of the
<a href="https://solidproject.org/">Solid</a>
<a href="https://solid.github.io/specification/">specifications</a></strong></p>
<ul>
<li><p>Community Solid Server is open software
to provide people with their own Solid Pod.</p>
</li>
<li><p>It will give developers an environment
to create and test new Solid applications.</p>
</li>
<li><p>Its modular architecture allows
trying out new ideas on the server side
and thereby shape the future of Solid.</p>
</li>
</ul>
<a href="#current-status" id="current-status" style="color: inherit; text-decoration: none;">
<h2>Current status</h2>
</a>
<p>This server is in beta stage, which means you can start using it for developing
and testing apps, with some limitations:</p>
<ul>
<li>User account / pod creation is not yet supported fully, and you must rely on
an external identity provider to log you in and authenticate your WebID.
<a href="https://github.com/solid/node-solid-server">solid/node-solid-server</a> or any
other pod provider can serve this purpose, and all you need to do is pass in
an external WebID when creating pods. More information on creating pods can be
found under <a href="#interacting-with-the-server">Interacting with the server</a>.</li>
<li>The spec is still under active development, and as such some features (like
<code>trustedApps</code>) are not yet implemented because they are likely to change. If
your users rely on this functionality, migrating is not yet recommended.</li>
</ul>
<p>Your feedback is most welcome as <a href="https://github.com/solid/community-server/issues/new">issues on this
repository</a>.</p>
<p>However, you can already boot up the server, play around with it, and check how
it is made.</p>
<p>The <a href="https://solid.github.io/community-server/docs/">📗 API documentation</a> and
the <a href="https://rubenverborgh.github.io/solid-server-architecture/solid-architecture-v1-3-0.pdf">📐 architectural
diagram</a>
can help you find your way. The organization and structure of the classes and
components in the <a href="/src">src folder</a> is designed to align with this
architectural diagram to the extent possible (i.e. the <a href="src/ldp">ldp folder</a>
should contain all the components from the <code>ldp</code> section of the diagram.</p>
<p>If you are interested in helping out with the development of this server, be
sure to have a look at the <a href="documentation/Notes-for-developers.md">📓 developer
notes</a> and
<a href="https://github.com/solid/community-server/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">🛠 good first
issues</a>.</p>
<a href="#running-the-server" id="running-the-server" style="color: inherit; text-decoration: none;">
<h2>Running the server</h2>
</a>
<a href="#configuring-the-server" id="configuring-the-server" style="color: inherit; text-decoration: none;">
<h3>Configuring the server</h3>
</a>
<p>Community Solid Server (CSS) uses
<a href="https://componentsjs.readthedocs.io/en/latest/">ComponentJS</a> to manage all
configuration for the server. There are a variety of configuration files for
common use cases in the <code>config</code> folder.</p>
<p>Additional recipes for configuring and deploying the server can be found at <a href="https://github.com/solid/community-server-recipes">solid/community-server-recipes</a>.</p>
<table>
<thead>
<tr>
<th>Parameter</th>
<th>Default</th>
<th>Description</th>
</tr>
</thead>
<tbody><tr>
<td><code>--port, -p</code></td>
<td><code>3000</code></td>
<td></td>
</tr>
<tr>
<td><code>--baseUrl. -b</code></td>
<td><code>&quot;http://localhost:$PORT/&quot;</code></td>
<td>Needs to be set to the base URL of the server for authnetication and authorization to function.</td>
</tr>
<tr>
<td><code>--config, -c</code></td>
<td><code>&quot;config/config-default.json&quot;</code></td>
<td><code>config-default.json</code> stores all data in memory. If you would like to persist data to your filesystem, try <code>config-file.json</code></td>
</tr>
<tr>
<td><code>--mainModulePath, -m</code></td>
<td></td>
<td>Absolute path to the package root from which ComponentJS module resolution should start.</td>
</tr>
<tr>
<td><code>--loggingLevel, -l</code></td>
<td><code>&quot;info&quot;</code></td>
<td></td>
</tr>
<tr>
<td><code>--rootFilePath, -f</code></td>
<td><code>&quot;./&quot;</code></td>
<td>Folder to start the server in when using a file-based config.</td>
</tr>
<tr>
<td><code>--sparqlEndpoint, -s</code></td>
<td></td>
<td>Endpoint to call when using a SPARQL-based config.</td>
</tr>
<tr>
<td><code>--podConfigJson</code></td>
<td><code>&quot;./pod-config.json&quot;</code></td>
<td>JSON file to store pod configuration when using a dynamic config.</td>
</tr>
<tr>
<td><code>--idpTemplateFolder</code></td>
<td><code>&quot;templates/idp&quot;</code></td>
<td>Folder containing the templates used for IDP interactions.</td>
</tr>
</tbody></table>
<a href="#installing-and-running-locally" id="installing-and-running-locally" style="color: inherit; text-decoration: none;">
<h3>Installing and running locally</h3>
</a>
<pre><code class="language-shell"><span style="color: #000000">$ npm ci</span>
<span style="color: #000000">$ npm start [-- ARGS]</span>
</code></pre>
<a href="#interacting-with-the-server" id="interacting-with-the-server" style="color: inherit; text-decoration: none;">
<h2>Interacting with the server</h2>
</a>
<p>CSS is still under active development, and as such the easiest and fastest way
to understand what functionality is supported is to read the integration tests.
This section is only intended as a high level summary of what&#39;s supported.</p>
<p>The server supports low-level interaction via HTTP methods, such as <code>GET</code>,
<code>PUT</code>, <code>HEAD</code>, ...</p>
<p>Below, we provide several examples on how to interact with the server using
<code>curl</code>.</p>
<a href="#post-creating-a-new-pod" id="post-creating-a-new-pod" style="color: inherit; text-decoration: none;">
<h3><code>POST</code>: Creating a new pod</h3>
</a>
<p>Create a pod using an external WebID for authentication:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X POST -H </span><span style="color: #A31515">&quot;Content-Type: application/json&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&#039;{&quot;login&quot;: &quot;timbl&quot;, &quot;webId&quot;: &quot;http://timbl.inrupt.net/profile/card#me&quot;}&#039;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/pods</span>
</code></pre>
<a href="#put-creating-resources-for-a-given-url" id="put-creating-resources-for-a-given-url" style="color: inherit; text-decoration: none;">
<h3><code>PUT</code>: Creating resources for a given URL</h3>
</a>
<p>Create a plain text file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X PUT -H </span><span style="color: #A31515">&quot;Content-Type: text/plain&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&quot;abc&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.txt</span>
</code></pre>
<p>Create a turtle file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X PUT -H </span><span style="color: #A31515">&quot;Content-Type: text/turtle&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&quot;&lt;ex:s&gt; &lt;ex:p&gt; &lt;ex:o&gt;.&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.ttl</span>
</code></pre>
<a href="#post-creating-resources-at-a-generated-url" id="post-creating-resources-at-a-generated-url" style="color: inherit; text-decoration: none;">
<h3><code>POST</code>: Creating resources at a generated URL</h3>
</a>
<p>Create a plain text file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X POST -H </span><span style="color: #A31515">&quot;Content-Type: text/plain&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&quot;abc&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/</span>
</code></pre>
<p>Create a turtle file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X POST -H </span><span style="color: #A31515">&quot;Content-Type: text/turtle&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&quot;&lt;ex:s&gt; &lt;ex:p&gt; &lt;ex:o&gt;.&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/</span>
</code></pre>
<p>The response&#39;s <code>Location</code> header will contain the URL of the created resource.</p>
<a href="#get-retrieving-resources" id="get-retrieving-resources" style="color: inherit; text-decoration: none;">
<h3><code>GET</code>: Retrieving resources</h3>
</a>
<p>Retrieve a plain text file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -H </span><span style="color: #A31515">&quot;Accept: text/plain&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.txt</span>
</code></pre>
<p>Retrieve a turtle file:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -H </span><span style="color: #A31515">&quot;Accept: text/turtle&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.ttl</span>
</code></pre>
<p>Retrieve a turtle file in a different serialization:</p>
<pre><code class="language-shell"><span style="color: #000000">curl -H </span><span style="color: #A31515">&quot;Accept: application/ld+json&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.ttl</span>
</code></pre>
<a href="#delete-deleting-resources" id="delete-deleting-resources" style="color: inherit; text-decoration: none;">
<h3><code>DELETE</code>: Deleting resources</h3>
</a>
<pre><code class="language-shell"><span style="color: #000000">curl -X DELETE http://localhost:3000/myfile.txt</span>
</code></pre>
<a href="#patch-modifying-resources" id="patch-modifying-resources" style="color: inherit; text-decoration: none;">
<h3><code>PATCH</code>: Modifying resources</h3>
</a>
<p>Currently, only patches over RDF resources are supported using <a href="https://www.w3.org/TR/sparql11-update/">SPARQL Update</a>
queries without <code>WHERE</code> clause.</p>
<pre><code class="language-shell"><span style="color: #000000">curl -X PATCH -H </span><span style="color: #A31515">&quot;Content-Type: application/sparql-update&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> -d </span><span style="color: #A31515">&quot;INSERT DATA { &lt;ex:s2&gt; &lt;ex:p2&gt; &lt;ex:o2&gt; }&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.ttl</span>
</code></pre>
<a href="#head-retrieve-resources-headers" id="head-retrieve-resources-headers" style="color: inherit; text-decoration: none;">
<h3><code>HEAD</code>: Retrieve resources headers</h3>
</a>
<pre><code class="language-shell"><span style="color: #000000">curl -I -H </span><span style="color: #A31515">&quot;Accept: text/plain&quot;</span><span style="color: #000000"> \</span>
<span style="color: #000000"> http://localhost:3000/myfile.txt</span>
</code></pre>
<a href="#options-retrieve-resources-communication-options" id="options-retrieve-resources-communication-options" style="color: inherit; text-decoration: none;">
<h3><code>OPTIONS</code>: Retrieve resources communication options</h3>
</a>
<pre><code class="language-shell"><span style="color: #000000">curl -X OPTIONS -i http://localhost:3000/myfile.txt</span>
</code></pre>
<a href="#run-using-docker" id="run-using-docker" style="color: inherit; text-decoration: none;">
<h2>Run using Docker</h2>
</a>
<p>A Docker image is available to run the containerised Solid Community Server against your filesystem.</p>
<p>Common usage:</p>
<ul>
<li>Build the Docker image<pre><code class="language-shell"><span style="color: #000000">docker build --rm -f Dockerfile -t css:latest </span><span style="color: #795E26">.</span>
</code></pre>
</li>
<li>Run the image against your <code>~/Solid</code> directory on <code>http://localhost:3000</code><pre><code class="language-shell"><span style="color: #000000">docker run --rm -v ~/Solid:/data -p 3000:3000 -it css:latest</span>
</code></pre>
</li>
<li>Use alternative versions of the built in config. The filestorage is just the default configuration, you can override with any of the configurations included with the server<pre><code class="language-shell"><span style="color: #000000">docker run --rm -p 3000:3000 -it css:latest -c config/config-default.json</span>
</code></pre>
Or override it with your own config mapped to the right directory<pre><code class="language-shell"><span style="color: #000000">docker run --rm -v ~/solid-config:/config -p 3000:3000 -it css:latest -c /config/my-config.json</span>
</code></pre>
</li>
</ul>
<a href="#using-the-identity-provider" id="using-the-identity-provider" style="color: inherit; text-decoration: none;">
<h2>Using the identity provider</h2>
</a>
<ol>
<li><p>Launch the Community Solid Server:</p>
<pre><code class="language-bash"><span style="color: #000000">git clone git@github.com:solid/community-server.git</span>
<span style="color: #795E26">cd</span><span style="color: #000000"> community-server</span>
<span style="color: #000000">npm ci</span>
<span style="color: #000000">npm start</span>
</code></pre>
</li>
<li><p>To use the identity provider, you need a compatible client application.</p>
<p> You can use for example <code>@inrupt/solid-client-authn-js</code>:</p>
<pre><code class="language-bash"><span style="color: #000000">git clone https://github.com/inrupt/solid-client-authn-js</span>
<span style="color: #795E26">cd</span><span style="color: #000000"> solid-client-authn-js</span>
<span style="color: #000000">npm ci</span>
<span style="color: #795E26">cd</span><span style="color: #000000"> packages/node/example/demoClientApp/</span>
<span style="color: #000000">npm ci</span>
<span style="color: #000000">npm start</span>
</code></pre>
<p> Go to <code>http://localhost:3001</code>.</p>
</li>
<li><p>Use the base URL of your running CSS instance to as Identity provider, for
example <code>http://localhost:3000</code>, to fill the form. Click the <code>login</code> button.</p>
</li>
<li><p>Follow the instructions to register/login/...</p>
<p> A WebID hosted in your pod will be required to complete registration.</p>
<p> In your running community server, you could create <code>http://localhost:3000/profile/card</code>
with the following content:</p>
<pre><code class="language-turtle">PREFIX : &lt;#&gt;
PREFIX solid: &lt;http://www.w3.org/ns/solid/terms#&gt;
:me solid:oidcIssuer &lt;http://localhost:3000/&gt; .
</code></pre>
<p> When registering, follow the on screen instructions and add the OIDC issuer
registration token to your WebID, which you can do for example by PATCHing
<code>http://localhost:3000/profile/card</code> with:</p>
<pre><code class="language-turtle">PREFIX : &lt;#&gt;
PREFIX solid: &lt;http://www.w3.org/ns/solid/terms#&gt;
INSERT DATA {
:me solid:oidcIssuerRegistrationToken &quot;IDP_TOKEN&quot; .
}
</code></pre>
</li>
<li><p>Once logged in, you are redirected to your client app, running for example on
<code>http://localhost:3001/</code>.</p>
</li>
<li><p>You&#39;re now authenticated and can fetch public and private resources.</p>
</li>
</ol>
</div>
</div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<nav class="tsd-navigation primary">
<ul>
<li class=" ">
<a href="modules.html">Exports</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_bearerwebidextractor.html">authentication/<wbr>Bearer<wbr>Web<wbr>IdExtractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_credentials.html">authentication/<wbr>Credentials</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_credentialsextractor.html">authentication/<wbr>Credentials<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_dpopwebidextractor.html">authentication/DPoPWeb<wbr>IdExtractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_emptycredentialsextractor.html">authentication/<wbr>Empty<wbr>Credentials<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_unsecureconstantcredentialsextractor.html">authentication/<wbr>Unsecure<wbr>Constant<wbr>Credentials<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authentication_unsecurewebidextractor.html">authentication/<wbr>Unsecure<wbr>Web<wbr>IdExtractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_alloweverythingauthorizer.html">authorization/<wbr>Allow<wbr>Everything<wbr>Authorizer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_authorization.html">authorization/<wbr>Authorization</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_authorizer.html">authorization/<wbr>Authorizer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_auxiliaryauthorizer.html">authorization/<wbr>Auxiliary<wbr>Authorizer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_webaclauthorization.html">authorization/<wbr>Web<wbr>Acl<wbr>Authorization</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/authorization_webaclauthorizer.html">authorization/<wbr>Web<wbr>Acl<wbr>Authorizer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_identityproviderfactory.html">identity/<wbr>Identity<wbr>Provider<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_identityproviderhttphandler.html">identity/<wbr>Identity<wbr>Provider<wbr>Http<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_configuration_configurationfactory.html">identity/configuration/<wbr>Configuration<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_configuration_keyconfigurationfactory.html">identity/configuration/<wbr>Key<wbr>Configuration<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_interactionhttphandler.html">identity/interaction/<wbr>Interaction<wbr>Http<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_interactionpolicy.html">identity/interaction/<wbr>Interaction<wbr>Policy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_sessionhttphandler.html">identity/interaction/<wbr>Session<wbr>Http<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_accountinteractionpolicy.html">identity/interaction/email-<wbr>password/<wbr>Account<wbr>Interaction<wbr>Policy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_emailpasswordutil.html">identity/interaction/email-<wbr>password/<wbr>Email<wbr>Password<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_forgotpasswordhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Forgot<wbr>Password<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_loginhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Login<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_registrationhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Registration<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_resetpasswordhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Reset<wbr>Password<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_resetpasswordrenderhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Reset<wbr>Password<wbr>Render<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_handler_resetpasswordviewhandler.html">identity/interaction/email-<wbr>password/handler/<wbr>Reset<wbr>Password<wbr>View<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_storage_accountstore.html">identity/interaction/email-<wbr>password/storage/<wbr>Account<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_email_password_storage_baseaccountstore.html">identity/interaction/email-<wbr>password/storage/<wbr>Base<wbr>Account<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_baseemailsender.html">identity/interaction/util/<wbr>Base<wbr>Email<wbr>Sender</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_ejstemplaterenderer.html">identity/interaction/util/<wbr>Ejs<wbr>Template<wbr>Renderer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_emailsender.html">identity/interaction/util/<wbr>Email<wbr>Sender</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_formdatautil.html">identity/interaction/util/<wbr>Form<wbr>Data<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_idpinteractionerror.html">identity/interaction/util/<wbr>Idp<wbr>Interaction<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_idprenderhandler.html">identity/interaction/util/<wbr>Idp<wbr>Render<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_idproutecontroller.html">identity/interaction/util/<wbr>Idp<wbr>Route<wbr>Controller</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_initialinteractionhandler.html">identity/interaction/util/<wbr>Initial<wbr>Interaction<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_interactioncompleter.html">identity/interaction/util/<wbr>Interaction<wbr>Completer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_issuerownershipvalidator.html">identity/interaction/util/<wbr>Issuer<wbr>Ownership<wbr>Validator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_ownershipvalidator.html">identity/interaction/util/<wbr>Ownership<wbr>Validator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_interaction_util_templaterenderer.html">identity/interaction/util/<wbr>Template<wbr>Renderer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_storage_adapterfactory.html">identity/storage/<wbr>Adapter<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_storage_expiringadapterfactory.html">identity/storage/<wbr>Expiring<wbr>Adapter<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_storage_wrappedfetchadapterfactory.html">identity/storage/<wbr>Wrapped<wbr>Fetch<wbr>Adapter<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/identity_util_fetchutil.html">identity/util/<wbr>Fetch<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/index.html">index</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_aclinitializer.html">init/<wbr>Acl<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_apprunner.html">init/<wbr>App<wbr>Runner</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_configpodinitializer.html">init/<wbr>Config<wbr>Pod<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_initializer.html">init/<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_loggerinitializer.html">init/<wbr>Logger<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_rootcontainerinitializer.html">init/<wbr>Root<wbr>Container<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/init_serverinitializer.html">init/<wbr>Server<wbr>Initializer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_authenticatedldphandler.html">ldp/<wbr>Authenticated<wbr>Ldp<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_unsecurewebsocketsprotocol.html">ldp/<wbr>Unsecure<wbr>Web<wbr>Sockets<wbr>Protocol</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_auxiliaryidentifierstrategy.html">ldp/auxiliary/<wbr>Auxiliary<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_auxiliarystrategy.html">ldp/auxiliary/<wbr>Auxiliary<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_composedauxiliarystrategy.html">ldp/auxiliary/<wbr>Composed<wbr>Auxiliary<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_linkmetadatagenerator.html">ldp/auxiliary/<wbr>Link<wbr>Metadata<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_metadatagenerator.html">ldp/auxiliary/<wbr>Metadata<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_rdfvalidator.html">ldp/auxiliary/<wbr>Rdf<wbr>Validator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_routingauxiliaryidentifierstrategy.html">ldp/auxiliary/<wbr>Routing<wbr>Auxiliary<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_routingauxiliarystrategy.html">ldp/auxiliary/<wbr>Routing<wbr>Auxiliary<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_suffixauxiliaryidentifierstrategy.html">ldp/auxiliary/<wbr>Suffix<wbr>Auxiliary<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_auxiliary_validator.html">ldp/auxiliary/<wbr>Validator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_acceptpreferenceparser.html">ldp/http/<wbr>Accept<wbr>Preference<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_basicrequestparser.html">ldp/http/<wbr>Basic<wbr>Request<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_basicresponsewriter.html">ldp/http/<wbr>Basic<wbr>Response<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_bodyparser.html">ldp/http/<wbr>Body<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_errorresponsewriter.html">ldp/http/<wbr>Error<wbr>Response<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_originalurlextractor.html">ldp/http/<wbr>Original<wbr>Url<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_patch.html">ldp/http/<wbr>Patch</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_preferenceparser.html">ldp/http/<wbr>Preference<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_rawbodyparser.html">ldp/http/<wbr>Raw<wbr>Body<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_requestparser.html">ldp/http/<wbr>Request<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_responsewriter.html">ldp/http/<wbr>Response<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_sparqlupdatebodyparser.html">ldp/http/<wbr>Sparql<wbr>Update<wbr>Body<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_sparqlupdatepatch.html">ldp/http/<wbr>Sparql<wbr>Update<wbr>Patch</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_targetextractor.html">ldp/http/<wbr>Target<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_basicmetadataextractor.html">ldp/http/metadata/<wbr>Basic<wbr>Metadata<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_constantmetadatawriter.html">ldp/http/metadata/<wbr>Constant<wbr>Metadata<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_contenttypeparser.html">ldp/http/metadata/<wbr>Content<wbr>Type<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_linkrelmetadatawriter.html">ldp/http/metadata/<wbr>Link<wbr>Rel<wbr>Metadata<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_linktypeparser.html">ldp/http/metadata/<wbr>Link<wbr>Type<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_mappedmetadatawriter.html">ldp/http/metadata/<wbr>Mapped<wbr>Metadata<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_metadataextractor.html">ldp/http/metadata/<wbr>Metadata<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_metadataparser.html">ldp/http/metadata/<wbr>Metadata<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_metadatawriter.html">ldp/http/metadata/<wbr>Metadata<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_slugparser.html">ldp/http/metadata/<wbr>Slug<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_metadata_wacallowmetadatawriter.html">ldp/http/metadata/<wbr>Wac<wbr>Allow<wbr>Metadata<wbr>Writer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_response_createdresponsedescription.html">ldp/http/response/<wbr>Created<wbr>Response<wbr>Description</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_response_okresponsedescription.html">ldp/http/response/<wbr>OkResponse<wbr>Description</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_response_resetresponsedescription.html">ldp/http/response/<wbr>Reset<wbr>Response<wbr>Description</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_http_response_responsedescription.html">ldp/http/response/<wbr>Response<wbr>Description</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_deleteoperationhandler.html">ldp/operations/<wbr>Delete<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_getoperationhandler.html">ldp/operations/<wbr>Get<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_headoperationhandler.html">ldp/operations/<wbr>Head<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_operation.html">ldp/operations/<wbr>Operation</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_operationhandler.html">ldp/operations/<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_patchoperationhandler.html">ldp/operations/<wbr>Patch<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_postoperationhandler.html">ldp/operations/<wbr>Post<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_operations_putoperationhandler.html">ldp/operations/<wbr>Put<wbr>Operation<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_permissions_aclpermissionsextractor.html">ldp/permissions/<wbr>Acl<wbr>Permissions<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_permissions_methodpermissionsextractor.html">ldp/permissions/<wbr>Method<wbr>Permissions<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_permissions_permissionset.html">ldp/permissions/<wbr>Permission<wbr>Set</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_permissions_permissionsextractor.html">ldp/permissions/<wbr>Permissions<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_permissions_sparqlpatchpermissionsextractor.html">ldp/permissions/<wbr>Sparql<wbr>Patch<wbr>Permissions<wbr>Extractor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_representation_basicrepresentation.html">ldp/representation/<wbr>Basic<wbr>Representation</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_representation_representation.html">ldp/representation/<wbr>Representation</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_representation_representationmetadata.html">ldp/representation/<wbr>Representation<wbr>Metadata</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_representation_representationpreferences.html">ldp/representation/<wbr>Representation<wbr>Preferences</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/ldp_representation_resourceidentifier.html">ldp/representation/<wbr>Resource<wbr>Identifier</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_lazylogger.html">logging/<wbr>Lazy<wbr>Logger</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_lazyloggerfactory.html">logging/<wbr>Lazy<wbr>Logger<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_loglevel.html">logging/<wbr>Log<wbr>Level</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_logutil.html">logging/<wbr>Log<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_logger.html">logging/<wbr>Logger</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_loggerfactory.html">logging/<wbr>Logger<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_voidlogger.html">logging/<wbr>Void<wbr>Logger</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_voidloggerfactory.html">logging/<wbr>Void<wbr>Logger<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_winstonlogger.html">logging/<wbr>Winston<wbr>Logger</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/logging_winstonloggerfactory.html">logging/<wbr>Winston<wbr>Logger<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_configpodmanager.html">pods/<wbr>Config<wbr>Pod<wbr>Manager</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generatedpodmanager.html">pods/<wbr>Generated<wbr>Pod<wbr>Manager</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_podmanager.html">pods/<wbr>Pod<wbr>Manager</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_podmanagerhttphandler.html">pods/<wbr>Pod<wbr>Manager<wbr>Http<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_basecomponentsjsfactory.html">pods/generate/<wbr>Base<wbr>Components<wbr>JsFactory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_componentsjsfactory.html">pods/generate/<wbr>Components<wbr>JsFactory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_generateutil.html">pods/generate/<wbr>Generate<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_handlebarstemplateengine.html">pods/generate/<wbr>Handlebars<wbr>Template<wbr>Engine</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_identifiergenerator.html">pods/generate/<wbr>Identifier<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_podgenerator.html">pods/generate/<wbr>Pod<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_resourcesgenerator.html">pods/generate/<wbr>Resources<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_subdomainidentifiergenerator.html">pods/generate/<wbr>Subdomain<wbr>Identifier<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_suffixidentifiergenerator.html">pods/generate/<wbr>Suffix<wbr>Identifier<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_templateengine.html">pods/generate/<wbr>Template<wbr>Engine</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_templatedpodgenerator.html">pods/generate/<wbr>Templated<wbr>Pod<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_templatedresourcesgenerator.html">pods/generate/<wbr>Templated<wbr>Resources<wbr>Generator</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_variables_baseurlhandler.html">pods/generate/variables/<wbr>Base<wbr>Url<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_variables_rootfilepathhandler.html">pods/generate/variables/<wbr>Root<wbr>File<wbr>Path<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_variables_variablehandler.html">pods/generate/variables/<wbr>Variable<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_variables_variablesetter.html">pods/generate/variables/<wbr>Variable<wbr>Setter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_generate_variables_variables.html">pods/generate/variables/<wbr>Variables</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_settings_podsettings.html">pods/settings/<wbr>Pod<wbr>Settings</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_settings_podsettingsjsonparser.html">pods/settings/<wbr>Pod<wbr>Settings<wbr>Json<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/pods_settings_podsettingsparser.html">pods/settings/<wbr>Pod<wbr>Settings<wbr>Parser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_basehttpserverfactory.html">server/<wbr>Base<wbr>Http<wbr>Server<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_httphandler.html">server/<wbr>Http<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_httprequest.html">server/<wbr>Http<wbr>Request</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_httpresponse.html">server/<wbr>Http<wbr>Response</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_httpserverfactory.html">server/<wbr>Http<wbr>Server<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_websockethandler.html">server/<wbr>Web<wbr>Socket<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_websocketserverfactory.html">server/<wbr>Web<wbr>Socket<wbr>Server<wbr>Factory</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_middleware_corshandler.html">server/middleware/<wbr>Cors<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_middleware_headerhandler.html">server/middleware/<wbr>Header<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_middleware_staticassethandler.html">server/middleware/<wbr>Static<wbr>Asset<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_middleware_websocketadvertiser.html">server/middleware/<wbr>Web<wbr>Socket<wbr>Advertiser</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_util_renderejshandler.html">server/util/<wbr>Render<wbr>Ejs<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_util_renderhandler.html">server/util/<wbr>Render<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/server_util_routerhandler.html">server/util/<wbr>Router<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_atomicresourcestore.html">storage/<wbr>Atomic<wbr>Resource<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_baseresourcestore.html">storage/<wbr>Base<wbr>Resource<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conditions.html">storage/<wbr>Conditions</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_dataaccessorbasedstore.html">storage/<wbr>Data<wbr>Accessor<wbr>Based<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_lockingresourcestore.html">storage/<wbr>Locking<wbr>Resource<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_monitoringstore.html">storage/<wbr>Monitoring<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_passthroughstore.html">storage/<wbr>Passthrough<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_patchingstore.html">storage/<wbr>Patching<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_readonlystore.html">storage/<wbr>Read<wbr>Only<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_representationconvertingstore.html">storage/<wbr>Representation<wbr>Converting<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_resourcestore.html">storage/<wbr>Resource<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routingresourcestore.html">storage/<wbr>Routing<wbr>Resource<wbr>Store</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_accessors_dataaccessor.html">storage/accessors/<wbr>Data<wbr>Accessor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_accessors_filedataaccessor.html">storage/accessors/<wbr>File<wbr>Data<wbr>Accessor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_accessors_inmemorydataaccessor.html">storage/accessors/<wbr>InMemory<wbr>Data<wbr>Accessor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_accessors_sparqldataaccessor.html">storage/accessors/<wbr>Sparql<wbr>Data<wbr>Accessor</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_chainedconverter.html">storage/conversion/<wbr>Chained<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_constantconverter.html">storage/conversion/<wbr>Constant<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_contenttypereplacer.html">storage/conversion/<wbr>Content<wbr>Type<wbr>Replacer</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_conversionutil.html">storage/conversion/<wbr>Conversion<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_ifneededconverter.html">storage/conversion/<wbr>IfNeeded<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_passthroughconverter.html">storage/conversion/<wbr>Passthrough<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_quadtordfconverter.html">storage/conversion/<wbr>Quad<wbr>ToRdf<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_rdftoquadconverter.html">storage/conversion/<wbr>Rdf<wbr>ToQuad<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_representationconverter.html">storage/conversion/<wbr>Representation<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_conversion_typedrepresentationconverter.html">storage/conversion/<wbr>Typed<wbr>Representation<wbr>Converter</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_expiringstorage.html">storage/keyvalue/<wbr>Expiring<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_jsonfilestorage.html">storage/keyvalue/<wbr>Json<wbr>File<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_jsonresourcestorage.html">storage/keyvalue/<wbr>Json<wbr>Resource<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_keyvaluestorage.html">storage/keyvalue/<wbr>Key<wbr>Value<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_memorymapstorage.html">storage/keyvalue/<wbr>Memory<wbr>Map<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_keyvalue_wrappedexpiringstorage.html">storage/keyvalue/<wbr>Wrapped<wbr>Expiring<wbr>Storage</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_mapping_basefileidentifiermapper.html">storage/mapping/<wbr>Base<wbr>File<wbr>Identifier<wbr>Mapper</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_mapping_extensionbasedmapper.html">storage/mapping/<wbr>Extension<wbr>Based<wbr>Mapper</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_mapping_fileidentifiermapper.html">storage/mapping/<wbr>File<wbr>Identifier<wbr>Mapper</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_mapping_fixedcontenttypemapper.html">storage/mapping/<wbr>Fixed<wbr>Content<wbr>Type<wbr>Mapper</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_mapping_subdomainextensionbasedmapper.html">storage/mapping/<wbr>Subdomain<wbr>Extension<wbr>Based<wbr>Mapper</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_patch_patchhandler.html">storage/patch/<wbr>Patch<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_patch_sparqlupdatepatchhandler.html">storage/patch/<wbr>Sparql<wbr>Update<wbr>Patch<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routing_baseurlrouterrule.html">storage/routing/<wbr>Base<wbr>Url<wbr>Router<wbr>Rule</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routing_convertingrouterrule.html">storage/routing/<wbr>Converting<wbr>Router<wbr>Rule</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routing_preferencesupport.html">storage/routing/<wbr>Preference<wbr>Support</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routing_regexrouterrule.html">storage/routing/<wbr>Regex<wbr>Router<wbr>Rule</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/storage_routing_routerrule.html">storage/routing/<wbr>Router<wbr>Rule</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_contenttypes.html">util/<wbr>Content<wbr>Types</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_guardedstream.html">util/<wbr>Guarded<wbr>Stream</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_headerutil.html">util/<wbr>Header<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_pathutil.html">util/<wbr>Path<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_quadutil.html">util/<wbr>Quad<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_recordobject.html">util/<wbr>Record<wbr>Object</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_resourceutil.html">util/<wbr>Resource<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_streamutil.html">util/<wbr>Stream<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_termutil.html">util/<wbr>Term<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_vocabularies.html">util/<wbr>Vocabularies</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_badrequesthttperror.html">util/errors/<wbr>Bad<wbr>Request<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_configurationerror.html">util/errors/<wbr>Configuration<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_conflicthttperror.html">util/errors/<wbr>Conflict<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_errorutil.html">util/errors/<wbr>Error<wbr>Util</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_forbiddenhttperror.html">util/errors/<wbr>Forbidden<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_httperror.html">util/errors/<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_internalservererror.html">util/errors/<wbr>Internal<wbr>Server<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_methodnotallowedhttperror.html">util/errors/<wbr>Method<wbr>Not<wbr>Allowed<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_notfoundhttperror.html">util/errors/<wbr>Not<wbr>Found<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_notimplementedhttperror.html">util/errors/<wbr>Not<wbr>Implemented<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_systemerror.html">util/errors/<wbr>System<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_unauthorizedhttperror.html">util/errors/<wbr>Unauthorized<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_errors_unsupportedmediatypehttperror.html">util/errors/<wbr>Unsupported<wbr>Media<wbr>Type<wbr>Http<wbr>Error</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_handlers_asynchandler.html">util/handlers/<wbr>Async<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_handlers_parallelhandler.html">util/handlers/<wbr>Parallel<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_handlers_sequencehandler.html">util/handlers/<wbr>Sequence<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_handlers_unsupportedasynchandler.html">util/handlers/<wbr>Unsupported<wbr>Async<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_handlers_waterfallhandler.html">util/handlers/<wbr>Waterfall<wbr>Handler</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_identifiers_baseidentifierstrategy.html">util/identifiers/<wbr>Base<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_identifiers_identifierstrategy.html">util/identifiers/<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_identifiers_singlerootidentifierstrategy.html">util/identifiers/<wbr>Single<wbr>Root<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_identifiers_subdomainidentifierstrategy.html">util/identifiers/<wbr>Subdomain<wbr>Identifier<wbr>Strategy</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_equalreadwritelocker.html">util/locking/<wbr>Equal<wbr>Read<wbr>Write<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_expiringreadwritelocker.html">util/locking/<wbr>Expiring<wbr>Read<wbr>Write<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_greedyreadwritelocker.html">util/locking/<wbr>Greedy<wbr>Read<wbr>Write<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_readwritelocker.html">util/locking/<wbr>Read<wbr>Write<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_redisresourcelocker.html">util/locking/<wbr>Redis<wbr>Resource<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_resourcelocker.html">util/locking/<wbr>Resource<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_singlethreadedresourcelocker.html">util/locking/<wbr>Single<wbr>Threaded<wbr>Resource<wbr>Locker</a>
</li>
<li class=" tsd-kind-module">
<a href="modules/util_locking_wrappedexpiringreadwritelocker.html">util/locking/<wbr>Wrapped<wbr>Expiring<wbr>Read<wbr>Write<wbr>Locker</a>
</li>
</ul>
</nav>
<nav class="tsd-navigation secondary menu-sticky">
<ul class="before-current">
</ul>
</nav>
</div>
</div>
</div>
<footer>
<div class="container">
<h2>Legend</h2>
<div class="tsd-legend-group">
<ul class="tsd-legend">
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
</ul>
<ul class="tsd-legend">
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
</ul>
</div>
</div>
</footer>
<div class="overlay"></div>
<script src="assets/js/main.js"></script>
</body>
</html>