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.
21 lines
580 B
21 lines
580 B
3 years ago
|
package com.fr.plugin.xxx.xxx.sso;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractLogInOutEventProvider;
|
||
|
import com.fr.decision.webservice.login.LogInOutResultInfo;
|
||
|
import com.fr.plugin.xxx.xxx.sso.util.LogUtils;
|
||
|
|
||
|
/**
|
||
|
* @Author hujian
|
||
|
* @Date 2020/9/18
|
||
|
* @Description
|
||
|
**/
|
||
|
public class CustomLogInOutEventProvider extends AbstractLogInOutEventProvider {
|
||
|
|
||
|
@Override
|
||
|
public String logoutAction(LogInOutResultInfo result) {
|
||
|
String logout = JianfaConfig.getInstance().getLogout();
|
||
|
LogUtils.debug4plugin("logout url is {}", logout);
|
||
|
return logout;
|
||
|
}
|
||
|
}
|