All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sap.ipe.ble.irp.secuirty.auditlog.logger.AuditEventLoggerImpl Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy