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.
34 lines
827 B
34 lines
827 B
/* |
|
* Copyright (C), 2018-2020 |
|
* Project: starter |
|
* FileName: ReportRowHandlerProvider |
|
* Author: xx |
|
* Date: 2020/11/26 21:34 |
|
*/ |
|
package com.fr.plugin.isgd.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.isgd.Constants.PLUGIN_ID; |
|
|
|
/** |
|
* <Function Description><br> |
|
* <ReportRowHandlerProvider> |
|
* |
|
* @author xx |
|
* @since 1.0.0 |
|
*/ |
|
@Authorize(callSignKey = PLUGIN_ID) |
|
public class ReportRowHandlerProvider extends AbstractHttpHandlerProvider { |
|
public ReportRowHandlerProvider() { |
|
} |
|
|
|
@Override |
|
public BaseHttpHandler[] registerHandlers() { |
|
return new BaseHttpHandler[]{ |
|
new ReportRowHandler() |
|
}; |
|
} |
|
} |