Merge pull request #59 from j2blake/feature/1408-java-rdf-namespaces
VIVO-1408 java rdf namespaces
This commit is contained in:
commit
73c205ddf2
2 changed files with 57 additions and 55 deletions
|
@ -11,6 +11,7 @@
|
|||
# ------------------------------------------------------------------------------
|
||||
|
||||
@prefix : <http://vitro.mannlib.cornell.edu/ns/vitro/ApplicationSetup#> .
|
||||
@prefix vitroWebapp: <java:edu.cornell.mannlib.vitro.webapp#> .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
|
@ -19,8 +20,8 @@
|
|||
#
|
||||
|
||||
:application
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.application.ApplicationImpl> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.Application> ;
|
||||
a vitroWebapp:application.ApplicationImpl ,
|
||||
vitroWebapp:modules.Application ;
|
||||
:hasSearchEngine :instrumentedSearchEngineWrapper ;
|
||||
:hasSearchIndexer :basicSearchIndexer ;
|
||||
:hasImageProcessor :iioImageProcessor ;
|
||||
|
@ -35,8 +36,8 @@
|
|||
#
|
||||
|
||||
:iioImageProcessor
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.imageprocessor.imageio.IIOImageProcessor> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.imageProcessor.ImageProcessor> .
|
||||
a vitroWebapp:imageprocessor.imageio.IIOImageProcessor ,
|
||||
vitroWebapp:modules.imageProcessor.ImageProcessor .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
|
@ -46,8 +47,8 @@
|
|||
#
|
||||
|
||||
:ptiFileStorage
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.filestorage.impl.FileStorageImplWrapper> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.fileStorage.FileStorage> .
|
||||
a vitroWebapp:filestorage.impl.FileStorageImplWrapper ,
|
||||
vitroWebapp:modules.fileStorage.FileStorage .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
|
@ -58,13 +59,13 @@
|
|||
#
|
||||
|
||||
:instrumentedSearchEngineWrapper
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchengine.InstrumentedSearchEngineWrapper> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchEngine.SearchEngine> ;
|
||||
a vitroWebapp:searchengine.InstrumentedSearchEngineWrapper ,
|
||||
vitroWebapp:modules.searchEngine.SearchEngine ;
|
||||
:wraps :solrSearchEngine .
|
||||
|
||||
:solrSearchEngine
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchengine.solr.SolrSearchEngine> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchEngine.SearchEngine> .
|
||||
a vitroWebapp:searchengine.solr.SolrSearchEngine ,
|
||||
vitroWebapp:modules.searchEngine.SearchEngine .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
|
@ -74,8 +75,8 @@
|
|||
#
|
||||
|
||||
:basicSearchIndexer
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.searchindex.SearchIndexerImpl> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.searchIndexer.SearchIndexer> ;
|
||||
a vitroWebapp:searchindex.SearchIndexerImpl ,
|
||||
vitroWebapp:modules.searchIndexer.SearchIndexer ;
|
||||
:threadPoolSize "10" .
|
||||
|
||||
# ----------------------------
|
||||
|
@ -89,26 +90,26 @@
|
|||
#
|
||||
|
||||
:sdbContentTripleSource
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.sdb.ContentTripleSourceSDB> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> .
|
||||
a vitroWebapp:triplesource.impl.sdb.ContentTripleSourceSDB ,
|
||||
vitroWebapp:modules.tripleSource.ContentTripleSource .
|
||||
|
||||
#:tdbContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.tdb.ContentTripleSourceTDB> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# a vitroWebapp:triplesource.impl.tdb.ContentTripleSourceTDB ,
|
||||
# vitroWebapp:modules.tripleSource.ContentTripleSource ;
|
||||
# # May be an absolute path, or relative to the Vitro home directory.
|
||||
# :hasTdbDirectory "tdbContentModels" .
|
||||
|
||||
#:sparqlContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.sparql.ContentTripleSourceSPARQL> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# a vitroWebapp:triplesource.impl.sparql.ContentTripleSourceSPARQL ,
|
||||
# vitroWebapp:modules.tripleSource.ContentTripleSource ;
|
||||
# # The URI of the SPARQL endpoint for your triple-store.
|
||||
# :hasEndpointURI "PUT_YOUR_SPARQL_ENDPOINT_URI_HERE" ;
|
||||
# # The URI to use for SPARQL UPDATE calls against your triple-store.
|
||||
# :hasUpdateEndpointURI "PUT_THE UPDATE_URI_HERE" .
|
||||
|
||||
#:virtuosoContentTripleSource
|
||||
# a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.virtuoso.ContentTripleSourceVirtuoso> ,
|
||||
# <java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ContentTripleSource> ;
|
||||
# a vitroWebapp:triplesource.impl.virtuoso.ContentTripleSourceVirtuoso ,
|
||||
# vitroWebapp:modules.tripleSource.ContentTripleSource ;
|
||||
# # The URI where Virtuoso can be accessed: don't include the /sparql path.
|
||||
# :hasBaseURI "http://localhost:8890" ;
|
||||
# # The name and password of a Virtuoso account that has the SPARQL_UPDATE role.
|
||||
|
@ -124,8 +125,8 @@
|
|||
#
|
||||
|
||||
:tdbConfigurationTripleSource
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.triplesource.impl.tdb.ConfigurationTripleSourceTDB> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tripleSource.ConfigurationTripleSource> .
|
||||
a vitroWebapp:triplesource.impl.tdb.ConfigurationTripleSourceTDB ,
|
||||
vitroWebapp:modules.tripleSource.ConfigurationTripleSource .
|
||||
|
||||
# ----------------------------
|
||||
#
|
||||
|
@ -135,5 +136,5 @@
|
|||
#
|
||||
|
||||
:jfactTBoxReasonerModule
|
||||
a <java:edu.cornell.mannlib.vitro.webapp.tboxreasoner.impl.jfact.JFactTBoxReasonerModule> ,
|
||||
<java:edu.cornell.mannlib.vitro.webapp.modules.tboxreasoner.TBoxReasonerModule> .
|
||||
a vitroWebapp:tboxreasoner.impl.jfact.JFactTBoxReasonerModule ,
|
||||
vitroWebapp:modules.tboxreasoner.TBoxReasonerModule .
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue