re base code
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / auditing / api / AuditEventFactory.java
1 package org.openecomp.sdc.be.auditing.api;
2
3 import org.javatuples.Pair;
4 import org.openecomp.sdc.be.resources.data.auditing.AuditingGenericEvent;
5
6 import java.util.List;
7
8 public interface AuditEventFactory {
9
10     String getLogMessage();
11     AuditingGenericEvent getDbEvent();
12     List<Pair<String, String>> getQueryParams();
13
14     //TODO remove together with ES related code
15     String getAuditingEsType();
16 }