Navigation Menu

Skip to content
This repository has been archived by the owner on Jan 3, 2019. It is now read-only.

Commit

Permalink
Use org.fcrepo.jms. as a header prefix rather than http://fedora.info…
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn authored and Andrew Woods committed Oct 24, 2014
1 parent 697ffcb commit 8747087
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
1 change: 0 additions & 1 deletion fcrepo-message-consumer-core/pom.xml
Expand Up @@ -145,7 +145,6 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-jms</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.fcrepo</groupId>
Expand Down
Expand Up @@ -58,6 +58,7 @@
import static javax.jcr.observation.Event.NODE_REMOVED;
import static org.apache.commons.lang.StringUtils.isBlank;
import static org.fcrepo.jcr.FedoraJcrTypes.FCR_METADATA;
import static org.fcrepo.jms.headers.DefaultMessageFactory.JMS_NAMESPACE;
import static org.fcrepo.kernel.RdfLexicon.CONTAINS;
import static org.fcrepo.kernel.RdfLexicon.HAS_PARENT;
import static org.fcrepo.kernel.RdfLexicon.REPOSITORY_NAMESPACE;
Expand Down Expand Up @@ -85,23 +86,23 @@ public class IndexerGroup implements MessageListener {
/**
* Identifier message header
*/
static final String IDENTIFIER_HEADER_NAME = REPOSITORY_NAMESPACE
static final String IDENTIFIER_HEADER_NAME = JMS_NAMESPACE
+ "identifier";

/**
* Properties message header
*/
static final String PROPERTIES_HEADER_NAME = REPOSITORY_NAMESPACE + "properties";
static final String PROPERTIES_HEADER_NAME = JMS_NAMESPACE + "properties";

/**
* BaseURL message header
*/
static final String BASE_URL_HEADER_NAME = REPOSITORY_NAMESPACE + "baseURL";
static final String BASE_URL_HEADER_NAME = JMS_NAMESPACE + "baseURL";

/**
* Event type message header
*/
static final String EVENT_TYPE_HEADER_NAME = REPOSITORY_NAMESPACE
static final String EVENT_TYPE_HEADER_NAME = JMS_NAMESPACE
+ "eventType";

/**
Expand Down

0 comments on commit 8747087

Please sign in to comment.