forked from fcrepo4-labs/fcrepo-api-x
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Self-load and expose as a repository-scoped service, bound to the repository root resource. Resolves fcrepo4-labs#84
- Loading branch information
Showing
5 changed files
with
88 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@prefix apix:<http://fedora.info/definitions/v4/api-extension#> . | ||
@prefix fedora:<http://fedora.info/definitions/v4/repository#> . | ||
@prefix rdfs:<http://www.w3.org/2000/01/rdf-schema#> . | ||
|
||
<> a apix:Extension; | ||
rdfs:label "Extension loader service"; | ||
rdfs:comment "A service that automates loading and registration of extensions and services"; | ||
apix:exposesService apix:LoaderService; | ||
apix:exposesServiceAt "/apix:load"; | ||
apix:bindsTo fedora:RepositoryRoot . |