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

com.anji.plus.gaea.log.event.AuditLogApplicationEvent Maven / Gradle / Ivy

There is a newer version: 2.9.4.1
Show newest version
package com.anji.plus.gaea.log.event;

import com.anji.plus.gaea.log.aspect.LogOperation;
import org.springframework.context.ApplicationEvent;

/**
 * 审计日志事件
 *
 * @author lr
 * @since 2021-01-20
 */
public class AuditLogApplicationEvent extends ApplicationEvent {
    private LogOperation logOperation;

    public void setLogOperation(LogOperation logOperation) {
        this.logOperation = logOperation;
    }

    public AuditLogApplicationEvent(Object obj, LogOperation logOperation) {
        super(obj);
        setLogOperation(logOperation);
    }

    public LogOperation getLogOperation() {
        return this.logOperation;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy