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.audit.triplestore;
007
008/**
009 * @author acoburn
010 */
011public final class AuditHeaders {
012
013    public static final String EVENT_BASE_URI = "CamelAuditEventBaseUri";
014
015    public static final String EVENT_URI = "CamelAuditEventUri";
016
017    private AuditHeaders() {
018        // prevent instantiation
019    }
020}