aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/main/java/org/openecomp/sdc/be/auditing/api/AuditEventFactory.java
blob: eed347f781a2bd6111d0b8ae8bc23507629fd804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.openecomp.sdc.be.auditing.api;

import org.javatuples.Pair;
import org.openecomp.sdc.be.resources.data.auditing.AuditingGenericEvent;

import java.util.List;

public interface AuditEventFactory {

    String getLogMessage();
    AuditingGenericEvent getDbEvent();
    List<Pair<String, String>> getQueryParams();

    //TODO remove together with ES related code
    String getAuditingEsType();
}