etreschenkov 2023-05-31 13:50:19 +03:00
parent f52f5fe304
commit 0a2e7ca09a

View file

@ -15,12 +15,14 @@ public class SdfExecutorsConfig {
public Map<SdfTable, AbstractExecutor<?>> executorsMap(Sdf01Executor sdf01Executor,
Sdf57Executor sdf57Executor,
Sdf04Executor sdf04Executor,
Sdf13Executor sdf13Executor) {
Sdf13Executor sdf13Executor,
Sdf08Executor sdf08Executor) {
Map<SdfTable, AbstractExecutor<?>> executors = new HashMap<>();
executors.put(SdfTable.SDF_01, sdf01Executor);
executors.put(SdfTable.SDF_57, sdf57Executor);
executors.put(SdfTable.SDF_04, sdf04Executor);
executors.put(SdfTable.SDF_13, sdf13Executor);
executors.put(SdfTable.SDF_08, sdf08Executor);
return executors;
}
}