feat(REQ-4624) - 兼容 test、pre 环境的一些问题

This commit is contained in:
wangli 2025-08-07 11:34:34 +08:00
parent 8673273039
commit 9fda02747f

View File

@ -0,0 +1,25 @@
package cn.axzo.workflow.core.engine.listener;
import lombok.extern.slf4j.Slf4j;
import org.flowable.engine.delegate.DelegateExecution;
import org.flowable.engine.delegate.ExecutionListener;
import org.springframework.cloud.context.config.annotation.RefreshScope;
import org.springframework.stereotype.Component;
/**
* 部分有告警设置的在节点正常执行后将清除告警
*
* @author wangli
* @since 2025-04-24 16:03
*/
@Component
@RefreshScope
@Slf4j
@Deprecated
public class EngineAlarmClearEventListener implements ExecutionListener {
private static final long serialVersionUID = -4246836140144129539L;
@Override
public void notify(DelegateExecution execution) {
}
}