com.sap.ipe.ble.irp.secuirty.auditlog.logger.AuditEventLoggerImpl Maven / Gradle / Ivy
package com.sap.ipe.ble.irp.secuirty.auditlog.logger;
import com.sap.cds.services.auditlog.AuditLogService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AuditEventLoggerImpl implements AuditEventLogger {
@Autowired
AuditLogService auditLogService;
@Override
public void emitSecurityEvent(String action, String data) {
auditLogService.logSecurityEvent(action, data);
}
}