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
525 B
20 lines
525 B
package com.fr.plugin.xxxx.logout; |
|
|
|
import com.fr.decision.fun.HttpHandler; |
|
import com.fr.decision.fun.impl.AbstractHttpHandlerProvider; |
|
import com.fr.plugin.xxxx.logout.handler.LogoutHandler; |
|
import com.fr.plugin.transform.FunctionRecorder; |
|
|
|
/** |
|
* @Author fr.open |
|
* @Date 2021/9/9 |
|
* @Description |
|
**/ |
|
@FunctionRecorder |
|
public class LogoutRequestHandlerBridge extends AbstractHttpHandlerProvider { |
|
@Override |
|
public HttpHandler[] registerHandlers() { |
|
return new HttpHandler[]{new LogoutHandler()}; |
|
} |
|
|
|
}
|
|
|