All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.taskana.task.rest.models.BulkOperationResultsRepresentationModel Maven / Gradle / Ivy

The newest version!
package pro.taskana.task.rest.models;

import java.util.HashMap;
import java.util.Map;
import org.springframework.hateoas.RepresentationModel;
import pro.taskana.common.api.exceptions.ErrorCode;

/** EntityModel class for BulkOperationResults. */
public class BulkOperationResultsRepresentationModel
    extends RepresentationModel {

  /** Map of keys to the stored information. */
  protected Map tasksWithErrors = new HashMap<>();

  public Map getTasksWithErrors() {
    return tasksWithErrors;
  }

  public void setTasksWithErrors(Map tasksWithErrors) {
    this.tasksWithErrors = tasksWithErrors;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy