public List create()

in src/main/java/com/epam/digital/data/platform/generator/factory/impl/CreateListCommandHandlerScopeFactory.java [39:55]


  public List<CreateListCommandHandlerScope> create(Context context) {
    return bulkLoadInfoProvider.getTablesWithBulkLoad().stream()
        .map(
            tableName -> {
              var table = findTable(tableName, context);
              String modelName = getSchemaName(table);

              var scope = new CreateListCommandHandlerScope();

              scope.setClassName(modelName + "CreateListCommandHandler");
              scope.setChildSchemaName(modelName + "Model");
              scope.setListEntitySchemaName(modelName + "CreateList");
              scope.setChildCommandHandlerName(modelName + "CreateCommandHandler");
              return scope;
            })
        .collect(toList());
  }