Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
acdc
repository-extension-services
Commits
4b77ebdc
Commit
4b77ebdc
authored
Apr 03, 2017
by
bseeger
Browse files
Cleans up the entailment code
parent
0132166f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
6 deletions
+5
-6
README.md
README.md
+4
-0
acrepo-exts-entailment/src/main/cfg/edu.amherst.acdc.exts.entailment.cfg
...ailment/src/main/cfg/edu.amherst.acdc.exts.entailment.cfg
+0
-3
acrepo-exts-entailment/src/main/resources/OSGI-INF/blueprint/blueprint.xml
...lment/src/main/resources/OSGI-INF/blueprint/blueprint.xml
+0
-1
acrepo-exts-entailment/src/main/resources/options.ttl
acrepo-exts-entailment/src/main/resources/options.ttl
+0
-1
acrepo-exts-entailment/src/test/resources/logback-test.xml
acrepo-exts-entailment/src/test/resources/logback-test.xml
+1
-1
No files found.
README.md
View file @
4b77ebdc
...
...
@@ -13,6 +13,7 @@ These modules extend the behavior of Fedora resources. Specifically, they connec
by making available a REST-based HTTP interface. The intention is that these extensions will be compatible with the
[
Fedora API Extension
](
https://wiki.duraspace.org/display/FF/Design+-+API+Extension+Architecture
)
architecture.
*
[
`acrepo-exts-entailment`
](
acrepo-exts-entailment
)
: This service will return RDFS entailment information associated with a Fedora Resource
*
[
`acrepo-exts-fits`
](
acrepo-exts-fits
)
: This service will return FITS information associated with a Fedora Binary, in XML format
*
[
`acrepo-exts-image`
](
acrepo-exts-image
)
: An image manipulation service
*
[
`acrepo-exts-ldpath`
](
acrepo-exts-ldpath
)
: This module extends
`fcrepo-ldpath`
to support additional Linked Data endpoints (e.g. Getty)
...
...
@@ -26,6 +27,7 @@ Services
These modules provide particular services, independent of Fedora Resources.
*
[
`acrepo-services-entailment`
](
acrepo-services-entailment
)
: An OSGi-based service for getting RDFS entailment information about resource
*
[
`acrepo-services-inference`
](
acrepo-services-inference
)
: An OSGi-based structural typing service using owl inference
*
[
`acrepo-services-mint`
](
acrepo-services-mint
)
: This mints random (public) URIs for use with Fedora resources
*
[
`acrepo-services-ore`
](
acrepo-services-ore
)
: This makes it easy to work with ORE aggregations
...
...
@@ -78,6 +80,7 @@ command from its shell:
feature:install acrepo-connector-idiomatic-pgsql
feature:install acrepo-connector-triplestore
feature:install acrepo-exts-entailment
feature:install acrepo-exts-fits
feature:install acrepo-exts-image
feature:install acrepo-exts-ldpath
...
...
@@ -86,6 +89,7 @@ command from its shell:
feature:install acrepo-exts-serialize-xml
feature:install acrepo-exts-template
feature:install acrepo-services-entailment
feature:install acrepo-services-inference
feature:install acrepo-services-mint
feature:install acrepo-services-ore
...
...
acrepo-exts-entailment/src/main/cfg/edu.amherst.acdc.exts.entailment.cfg
View file @
4b77ebdc
...
...
@@ -3,9 +3,6 @@ rest.host=localhost
rest.port=9109
rest.prefix=/entailment
# Concurrency level (this MUST be > 1)
entailment.concurrency=10
# Repository Base URL (it MUST start with http:// or https://)
fcrepo.baseUrl=http://localhost:8080/fcrepo/rest
fcrepo.authUsername=
...
...
acrepo-exts-entailment/src/main/resources/OSGI-INF/blueprint/blueprint.xml
View file @
4b77ebdc
...
...
@@ -13,7 +13,6 @@
<cm:property
name=
"rest.port"
value=
"9109"
/>
<cm:property
name=
"rest.prefix"
value=
"/entailment"
/>
<cm:property
name=
"rest.host"
value=
"localhost"
/>
<cm:property
name=
"entailment.concurrency"
value=
"10"
/>
<cm:property
name=
"fcrepo.baseUrl"
value=
"http://localhost:8080/fcrepo/rest"
/>
<cm:property
name=
"fcrepo.authUsername"
value=
""
/>
<cm:property
name=
"fcrepo.authPassword"
value=
""
/>
...
...
acrepo-exts-entailment/src/main/resources/options.ttl
View file @
4b77ebdc
@prefix
owl:
<http://www.w3.org/2002/07/owl#>
.
@prefix
rdfs:
<http://www.w3.org/2000/01/rdf-schema#>
.
@prefix
registry:
<http://acdc.amherst.edu/ns/registry#>
.
@prefix
apix:
<http://fedora.info/definitions/v4/api-extension#>
.
...
...
acrepo-exts-entailment/src/test/resources/logback-test.xml
View file @
4b77ebdc
...
...
@@ -7,7 +7,7 @@
</encoder>
</appender>
<logger
name=
"edu.amherst.acdc.exts.
pcdm
"
additivity=
"false"
level=
"INFO"
>
<logger
name=
"edu.amherst.acdc.exts.
entailment
"
additivity=
"false"
level=
"INFO"
>
<appender-ref
ref=
"STDOUT"
/>
</logger>
<logger
name=
"org.apache.camel"
additivity=
"false"
level=
"INFO"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment