This commit is contained in:
@@ -75,7 +75,7 @@ public class HandlerConfig {
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Map<Integer, RequestHandler> internalHandlers(
|
||||
public Map<Integer, RequestHandler> internalInfoHandler(
|
||||
StatisticComplaintHandler statisticComplaintHandler,
|
||||
StatisticUserFilesHandler statisticUserHandler,
|
||||
StatisticTariffInfoFileHandler statisticTariffInfoFileHandler,
|
||||
@@ -86,7 +86,6 @@ public class HandlerConfig {
|
||||
StatisticTokenHandler statisticTokenHandler,
|
||||
StatisticIncomeHandler statisticIncomeHandler,
|
||||
MonitoringStatisticHandler monitoringStatisticHandler,
|
||||
ControlComplaintHandler controlComplaintHandler,
|
||||
UserInfoHandler userInfoHandler
|
||||
)
|
||||
{
|
||||
@@ -102,6 +101,18 @@ public class HandlerConfig {
|
||||
map.put(30026, statisticIncomeHandler);
|
||||
map.put(30027, monitoringStatisticHandler);
|
||||
map.put(30029, statisticComplaintHandler);
|
||||
|
||||
return map;
|
||||
}
|
||||
|
||||
@Bean
|
||||
public Map<Integer, RequestHandler> internalControlHandler(
|
||||
ControlComplaintHandler controlComplaintHandler,
|
||||
UserInfoHandler userInfoHandler
|
||||
)
|
||||
{
|
||||
Map<Integer, RequestHandler> map = new HashMap<>();
|
||||
map.put(30014, userInfoHandler);
|
||||
map.put(30030, controlComplaintHandler);
|
||||
|
||||
return map;
|
||||
|
||||
Reference in New Issue
Block a user