OSGI-INF.blueprint.blueprint.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fcrepo-indexing-triplestore Show documentation
Show all versions of fcrepo-indexing-triplestore Show documentation
Camel-based indexing service for an external triplestore
<?xml version="1.0" encoding="UTF-8"?> <blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0" xsi:schemaLocation=" http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0 http://aries.apache.org/schemas/blueprint-cm/blueprint-cm-1.1.0.xsd http://www.osgi.org/xmlns/blueprint/v1.0.0 http://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd"> <!-- OSGI blueprint property placeholder --> <cm:property-placeholder id="properties" persistent-id="org.fcrepo.camel.indexing.triplestore" update-strategy="reload"> <cm:default-properties> <cm:property name="error.maxRedeliveries" value="10"/> <cm:property name="fcrepo.authUsername" value=""/> <cm:property name="fcrepo.authPassword" value=""/> <cm:property name="fcrepo.authHost" value=""/> <cm:property name="fcrepo.baseUrl" value="localhost:8080/fcrepo4/rest"/> <cm:property name="indexing.predicate" value="false"/> <cm:property name="jms.brokerUrl" value="tcp://localhost:61616"/> <cm:property name="input.stream" value="activemq:topic:fedora"/> <cm:property name="triplestore.reindex.stream" value="activemq:queue:triplestore.reindex"/> <cm:property name="triplestore.baseUrl" value="localhost:8080/fuseki/test/update"/> <cm:property name="triplestore.namedGraph" value=""/> <cm:property name="audit.container" value="/audit"/> <cm:property name="prefer.omit" value="http://www.w3.org/ns/ldp#PreferContainment"/> <cm:property name="prefer.include" value=""/> </cm:default-properties> </cm:property-placeholder> <!-- configuration of activemq component --> <bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent"> <property name="brokerURL" value="${jms.brokerUrl}"/> </bean> <!-- component-wide configuration of fcrepo --> <bean id="fcrepo" class="org.fcrepo.camel.FcrepoComponent"> <property name="authUsername" value="${fcrepo.authUsername}"/> <property name="authPassword" value="${fcrepo.authPassword}"/> <property name="authHost" value="${fcrepo.authHost}"/> </bean> <camelContext id="FcrepoTriplestoreIndexer" xmlns="http://camel.apache.org/schema/blueprint"> <package>org.fcrepo.camel.indexing.triplestore</package> </camelContext> </blueprint>