001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.camel.reindexing;
007
008/**
009 * A class defining header values for the indexing routes
010 *
011 * @author acoburn
012 * @since May 22, 2015
013 */
014public final class ReindexingHeaders {
015    public static final String REINDEXING_PORT = "CamelReindexingPort";
016    public static final String REINDEXING_PREFIX = "CamelReindexingPrefix";
017    public static final String REINDEXING_RECIPIENTS = "CamelReindexingRecipients";
018    public static final String REINDEXING_HOST = "CamelReindexingHost";
019
020    private ReindexingHeaders() {
021        // prevent instantiation
022    }
023}