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.
25 lines
766 B
25 lines
766 B
package com.fr.plugin.third.party.jsdbadeh; |
|
|
|
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.record.analyzer.EnableMetrics; |
|
import com.fr.stable.fun.Authorize; |
|
|
|
|
|
/** |
|
* 配置信息初始化 |
|
*/ |
|
@EnableMetrics |
|
@Authorize(callSignKey = "com.fr.plugin.third.party.jsdbadeh") |
|
public class PluginLifecycleMonitor extends AbstractPluginLifecycleMonitor { |
|
@Override |
|
@Focus(id = "com.fr.plugin.third.party.jsdbadeh", text = "plugin-jsdbadeh", source = Original.PLUGIN) |
|
public void afterRun(PluginContext pluginContext) { |
|
} |
|
|
|
@Override |
|
public void beforeStop(PluginContext pluginContext) { |
|
} |
|
}
|
|
|