You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
879 B
28 lines
879 B
2 years ago
|
package com.fr.plugin.third.party.jsdbabbe;
|
||
|
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.plugin.context.PluginContext;
|
||
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor;
|
||
|
import com.fr.plugin.third.party.jsdbabbe.config.CustomDataConfig;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.stable.fun.Authorize;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 配置信息初始化
|
||
|
*/
|
||
|
@EnableMetrics
|
||
|
@Authorize(callSignKey = "com.fr.plugin.third.party.jsdbabbe")
|
||
|
public class OutputPluginLifecycleMonitor extends AbstractPluginLifecycleMonitor {
|
||
|
@Override
|
||
|
@Focus(id = "com.fr.plugin.third.party.jsdbabbe", text = "plugin-jsdbabbe", source = Original.PLUGIN)
|
||
|
public void afterRun(PluginContext pluginContext) {
|
||
|
CustomDataConfig.getInstance();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void beforeStop(PluginContext pluginContext) {
|
||
|
}
|
||
|
}
|