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.
33 lines
849 B
33 lines
849 B
/* |
|
* Copyright (C), 2015-2019 |
|
* FileName: RequestHandlerBridge |
|
* Author: Louis |
|
* Date: 2019/8/17 22:20 |
|
* Description: RequestHandlerBridge |
|
* History: |
|
* <author> <time> <version> <desc> |
|
*/ |
|
package com.fr.plugin.hfic.service; |
|
|
|
import com.fr.decision.fun.impl.AbstractHttpHandlerProvider; |
|
import com.fr.decision.fun.impl.BaseHttpHandler; |
|
import com.fr.stable.fun.Authorize; |
|
|
|
import static com.fr.plugin.hfic.LocaleFinder.PLUGIN_ID; |
|
|
|
/** |
|
* 〈Function Description〉<br> |
|
* 〈RequestHandlerBridge〉 |
|
* |
|
* @author fr.open |
|
* @since 1.0.0 |
|
*/ |
|
@Authorize(callSignKey = PLUGIN_ID) |
|
public class RequestHandlerBridge extends AbstractHttpHandlerProvider { |
|
@Override |
|
public BaseHttpHandler[] registerHandlers() { |
|
return new BaseHttpHandler[]{ |
|
new ReportDataHandler() |
|
}; |
|
} |
|
} |