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.
18 lines
505 B
18 lines
505 B
package com.fr.plugin.xxxx.xxxx.menu; |
|
|
|
import com.fr.decision.fun.impl.AbstractLogInOutEventProvider; |
|
import com.fr.decision.webservice.login.LogInOutResultInfo; |
|
import com.fr.general.PropertiesUtils; |
|
|
|
/** |
|
* @Author fr.open |
|
* @Date 2020/11/13 |
|
* @Description |
|
**/ |
|
public class CustomLogInOutEventProvider extends AbstractLogInOutEventProvider { |
|
@Override |
|
public String logoutAction(LogInOutResultInfo result) { |
|
return PropertiesUtils.getProperties("sso").getProperty("logout"); |
|
} |
|
|
|
}
|
|
|