Navigation Menu

Skip to content

Commit

Permalink
Make configuration properties consistent
Browse files Browse the repository at this point in the history
Add new fcrepo-camel-webapp module

Remove individual web modules

Completes: https://jira.duraspace.org/browse/FCREPO-1523
  • Loading branch information
Andrew Woods authored and acoburn committed May 7, 2015
1 parent d142b43 commit 3b012c7
Show file tree
Hide file tree
Showing 25 changed files with 353 additions and 628 deletions.
65 changes: 0 additions & 65 deletions fcrepo-audit-triplestore-web/README.md

This file was deleted.

88 changes: 0 additions & 88 deletions fcrepo-audit-triplestore-web/pom.xml

This file was deleted.

This file was deleted.

22 changes: 0 additions & 22 deletions fcrepo-audit-triplestore-web/src/main/resources/logback.xml

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions fcrepo-audit-triplestore/README.md
Expand Up @@ -54,9 +54,9 @@ The connection URI used to connect to a local or remote ActiveMQ broker

jms.brokerUrl=tcp://localhost:61616

The name of the JMS topic (or queue) from which the event stream is to be read.
The camel URI for the incoming message stream.

jms.fcrepoEndpoint=topic:fedora
input.stream=activemq:topic:fedora

The base URL of the triplestore being used.

Expand Down
Expand Up @@ -45,7 +45,7 @@ public void configure() throws Exception {
/**
* Process a message.
*/
from("activemq:{{jms.fcrepoEndpoint}}")
from("{{input.stream}}")
.routeId("AuditFcrepoRouter")
.filter(not(or(header(IDENTIFIER).startsWith(simple("{{audit.container}}/")),
header(IDENTIFIER).isEqualTo(simple("{{audit.container}}")))))
Expand Down
Expand Up @@ -12,7 +12,7 @@
<cm:default-properties>
<cm:property name="error.maxRedeliveries" value="10"/>
<cm:property name="jms.brokerUrl" value="tcp://localhost:61616"/>
<cm:property name="jms.fcrepoEndpoint" value="topic:fedora"/>
<cm:property name="input.stream" value="activemq:topic:fedora"/>
<cm:property name="triplestore.baseUrl" value="localhost:3030/test/update"/>
<!-- Base URI to be used in contructing the URI for the JMS event -->
<cm:property name="event.baseUri" value="http://example.com/event"/>
Expand Down

0 comments on commit 3b012c7

Please sign in to comment.