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.
17 lines
499 B
17 lines
499 B
package com.fr.plugin.xxx.sso; |
|
|
|
import com.fr.decision.fun.impl.AbstractLogInOutEventProvider; |
|
import com.fr.decision.webservice.login.LogInOutResultInfo; |
|
import com.fr.general.PropertiesUtils; |
|
|
|
/** |
|
* @Author fr.open |
|
* @Date 2021/5/22 |
|
* @Description |
|
**/ |
|
public class CustomLogInOutEventProvider extends AbstractLogInOutEventProvider { |
|
@Override |
|
public String logoutAction(LogInOutResultInfo result) { |
|
return PropertiesUtils.getProperties("xxxsso").getProperty("logout"); |
|
} |
|
}
|
|
|