public List getLightweightTasks()

in src/main/java/com/epam/digital/data/platform/usrtaskmgt/service/UserTaskManagementService.java [118:130]


  public List<UserTaskLightweightResponse> getLightweightTasks(
      @Nullable String rootProcessInstanceId,
      @NonNull Pageable page, @NonNull Authentication authentication) {
    log.info("Getting unfinished lightweight user tasks for root process instance {}. "
        + "Parameters: {}", rootProcessInstanceId, page);

    var tasks = userTaskRemoteService.getLightweightUserTasks(rootProcessInstanceId,
        authentication.getName(), page);
    log.trace("Found lightweight user tasks - {}", tasks);

    log.info("Found {} user tasks", tasks.size());
    return tasks;
  }