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.
20 lines
587 B
20 lines
587 B
package com.fr.plugin.third.party.jsdbahfc; |
|
|
|
import com.fr.decision.webservice.bean.config.ThemeConfigBean; |
|
import com.fr.plugin.context.PluginContext; |
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor; |
|
|
|
|
|
/** |
|
* 配置信息初始化 |
|
*/ |
|
public class PluginLifecycleMonitor extends AbstractPluginLifecycleMonitor { |
|
@Override |
|
public void afterRun(PluginContext pluginContext) { |
|
ThemeConfigBean.THEME_ID_TEXT_MAP.put(ThemeConstants.PLUGIN_ID,ThemeConstants.PLUGIN_ID); |
|
} |
|
|
|
@Override |
|
public void beforeStop(PluginContext pluginContext) { |
|
} |
|
}
|
|
|