JSD-9551 WebService开放
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.
 
 

38 lines
1.0 KiB

/*
* 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.tabledataservice.request;
import com.fr.decision.fun.impl.AbstractHttpHandlerProvider;
import com.fr.decision.fun.impl.BaseHttpHandler;
import com.fr.plugin.tabledataservice.ConfigTableDataService;
import com.fr.plugin.tabledataservice.Constants;
import com.fr.stable.fun.Authorize;
/**
* 〈Function Description〉<br>
* 〈RequestHandlerBridge〉
*
* @author fr.open
* @since 1.0.0
*/
@Authorize(callSignKey = Constants.PLUGIN_ID)
public class RequestHandlerBridge extends AbstractHttpHandlerProvider {
public RequestHandlerBridge() {
ConfigTableDataService.getInstance();
}
@Override
public BaseHttpHandler[] registerHandlers() {
return new BaseHttpHandler[]{
new TableDataHandler(),
new ReportDataHandler()
};
}
}