Skip to content

Commit

Permalink
Merge pull request #17 from acoburn/fcrepo-1501
Browse files Browse the repository at this point in the history
update location of util functions in auditor class
  • Loading branch information
Andrew Woods committed Apr 25, 2015
2 parents 53d23d0 + f13d31a commit ae8d4c2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import java.util.TimeZone;
import java.util.UUID;

import org.fcrepo.audit.InternalAuditor;
import org.fcrepo.audit.AuditUtils;
import org.fcrepo.camel.JmsHeaders;
import org.fcrepo.camel.processor.ProcessorUtils;

Expand Down Expand Up @@ -120,7 +120,7 @@ private static Set<Triple> triplesForMessage(final Message message, final UriRef
final String agent = (String) message.getHeader(JmsHeaders.USER_AGENT, EMPTY_STRING);
final String properties = (String) message.getHeader(JmsHeaders.PROPERTIES, EMPTY_STRING);
final String identifier = ProcessorUtils.getSubjectUri(message);
final String premisType = InternalAuditor.getAuditEventType(eventType, properties);
final String premisType = AuditUtils.getAuditEventType(eventType, properties);

// types
final Set<Triple> triples = new HashSet<>();
Expand Down

0 comments on commit ae8d4c2

Please sign in to comment.