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.
34 lines
780 B
34 lines
780 B
4 years ago
|
/*
|
||
|
* Copyright (C), 2018-2021
|
||
|
* Project: starter
|
||
|
* FileName: OneAccessLifeCycleMonitor
|
||
|
* Author: Louis
|
||
|
* Date: 2021/3/30 15:10
|
||
|
*/
|
||
|
package com.fr.plugin.j7944.sso;
|
||
|
|
||
|
import com.fr.plugin.context.PluginContext;
|
||
|
import com.fr.plugin.observer.inner.AbstractPluginLifecycleMonitor;
|
||
|
import com.fr.plugin.j7944.sso.config.SsoConfig;
|
||
|
|
||
|
/**
|
||
|
* <Function Description><br>
|
||
|
* <OneAccessLifeCycleMonitor>
|
||
|
*
|
||
|
* @author Louis
|
||
|
* @since 1.0.0
|
||
|
*/
|
||
|
public class LifeCycleMonitorImpl extends AbstractPluginLifecycleMonitor {
|
||
|
public LifeCycleMonitorImpl() {
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void afterRun(PluginContext pluginContext) {
|
||
|
SsoConfig.getInstance();
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void beforeStop(PluginContext pluginContext) {
|
||
|
|
||
|
}
|
||
|
}
|