org.bonitasoft.web.client.model.Task Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bonita-java-client Show documentation
Show all versions of bonita-java-client Show documentation
Java client for Bonita REST API
The newest version!
/**
* Copyright (C) 2024-2023 BonitaSoft S.A.
* BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2.0 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package org.bonitasoft.web.client.model;
import java.io.Serializable;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
/**
* Task
*/
@JsonPropertyOrder({
Task.JSON_PROPERTY_ID,
Task.JSON_PROPERTY_TYPE,
Task.JSON_PROPERTY_NAME,
Task.JSON_PROPERTY_DISPLAY_NAME,
Task.JSON_PROPERTY_DESCRIPTION,
Task.JSON_PROPERTY_DISPLAY_DESCRIPTION,
Task.JSON_PROPERTY_STATE,
Task.JSON_PROPERTY_REACHED_STATE_DATE,
Task.JSON_PROPERTY_LAST_UPDATE_DATE,
Task.JSON_PROPERTY_DUE_DATE,
Task.JSON_PROPERTY_PRIORITY,
Task.JSON_PROPERTY_PROCESS_ID,
Task.JSON_PROPERTY_PARENT_CASE_ID,
Task.JSON_PROPERTY_PARENT_TASK_ID,
Task.JSON_PROPERTY_ROOT_CASE_ID,
Task.JSON_PROPERTY_ROOT_CONTAINER_ID,
Task.JSON_PROPERTY_EXECUTED_BY,
Task.JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE,
Task.JSON_PROPERTY_ACTOR_ID,
Task.JSON_PROPERTY_ASSIGNED_ID,
Task.JSON_PROPERTY_ASSIGNED_DATE,
Task.JSON_PROPERTY_IS_TERMINAL
})
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", comments = "Generator version: 7.8.0")
public class Task implements Serializable {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_ID = "id";
private String id;
public static final String JSON_PROPERTY_TYPE = "type";
private String type;
public static final String JSON_PROPERTY_NAME = "name";
private String name;
public static final String JSON_PROPERTY_DISPLAY_NAME = "displayName";
private String displayName;
public static final String JSON_PROPERTY_DESCRIPTION = "description";
private String description;
public static final String JSON_PROPERTY_DISPLAY_DESCRIPTION = "displayDescription";
private String displayDescription;
public static final String JSON_PROPERTY_STATE = "state";
private ActivityState state;
public static final String JSON_PROPERTY_REACHED_STATE_DATE = "reached_state_date";
private String reachedStateDate;
public static final String JSON_PROPERTY_LAST_UPDATE_DATE = "last_update_date";
private String lastUpdateDate;
public static final String JSON_PROPERTY_DUE_DATE = "dueDate";
private String dueDate;
public static final String JSON_PROPERTY_PRIORITY = "priority";
private String priority;
public static final String JSON_PROPERTY_PROCESS_ID = "processId";
private String processId;
public static final String JSON_PROPERTY_PARENT_CASE_ID = "parentCaseId";
private String parentCaseId;
public static final String JSON_PROPERTY_PARENT_TASK_ID = "parentTaskId";
private String parentTaskId;
public static final String JSON_PROPERTY_ROOT_CASE_ID = "rootCaseId";
private String rootCaseId;
public static final String JSON_PROPERTY_ROOT_CONTAINER_ID = "rootContainerId";
private String rootContainerId;
public static final String JSON_PROPERTY_EXECUTED_BY = "executedBy";
private String executedBy;
public static final String JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE = "executedBySubstitute";
private String executedBySubstitute;
public static final String JSON_PROPERTY_ACTOR_ID = "actorId";
private String actorId;
public static final String JSON_PROPERTY_ASSIGNED_ID = "assigned_id";
private String assignedId;
public static final String JSON_PROPERTY_ASSIGNED_DATE = "assigned_date";
private String assignedDate;
public static final String JSON_PROPERTY_IS_TERMINAL = "isTerminal";
private Boolean isTerminal;
public Task() {
}
public Task id(String id) {
this.id = id;
return this;
}
/**
* the task id
*
* @return id
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getId() {
return id;
}
@JsonProperty(JSON_PROPERTY_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setId(String id) {
this.id = id;
}
public Task type(String type) {
this.type = type;
return this;
}
/**
* the task type
*
* @return type
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getType() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setType(String type) {
this.type = type;
}
public Task name(String name) {
this.name = name;
return this;
}
/**
* the task technical name
*
* @return name
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getName() {
return name;
}
@JsonProperty(JSON_PROPERTY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setName(String name) {
this.name = name;
}
public Task displayName(String displayName) {
this.displayName = displayName;
return this;
}
/**
* the human readable task name
*
* @return displayName
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDisplayName() {
return displayName;
}
@JsonProperty(JSON_PROPERTY_DISPLAY_NAME)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public Task description(String description) {
this.description = description;
return this;
}
/**
* the task description
*
* @return description
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDescription() {
return description;
}
@JsonProperty(JSON_PROPERTY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDescription(String description) {
this.description = description;
}
public Task displayDescription(String displayDescription) {
this.displayDescription = displayDescription;
return this;
}
/**
* the human readable task description
*
* @return displayDescription
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDisplayDescription() {
return displayDescription;
}
@JsonProperty(JSON_PROPERTY_DISPLAY_DESCRIPTION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDisplayDescription(String displayDescription) {
this.displayDescription = displayDescription;
}
public Task state(ActivityState state) {
this.state = state;
return this;
}
/**
* Get state
*
* @return state
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public ActivityState getState() {
return state;
}
@JsonProperty(JSON_PROPERTY_STATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setState(ActivityState state) {
this.state = state;
}
public Task reachedStateDate(String reachedStateDate) {
this.reachedStateDate = reachedStateDate;
return this;
}
/**
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task reached the current state for example '2014-10-17 16:05:42.626'
*
* @return reachedStateDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getReachedStateDate() {
return reachedStateDate;
}
@JsonProperty(JSON_PROPERTY_REACHED_STATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setReachedStateDate(String reachedStateDate) {
this.reachedStateDate = reachedStateDate;
}
public Task lastUpdateDate(String lastUpdateDate) {
this.lastUpdateDate = lastUpdateDate;
return this;
}
/**
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task was last updated for example '2014-10-17 16:05:42.626)
*
* @return lastUpdateDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getLastUpdateDate() {
return lastUpdateDate;
}
@JsonProperty(JSON_PROPERTY_LAST_UPDATE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLastUpdateDate(String lastUpdateDate) {
this.lastUpdateDate = lastUpdateDate;
}
public Task dueDate(String dueDate) {
this.dueDate = dueDate;
return this;
}
/**
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when this task is due for example '2014-10-17 16:05:42.626'
*
* @return dueDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getDueDate() {
return dueDate;
}
@JsonProperty(JSON_PROPERTY_DUE_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setDueDate(String dueDate) {
this.dueDate = dueDate;
}
public Task priority(String priority) {
this.priority = priority;
return this;
}
/**
* the priority (string) of the current task
*
* @return priority
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getPriority() {
return priority;
}
@JsonProperty(JSON_PROPERTY_PRIORITY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setPriority(String priority) {
this.priority = priority;
}
public Task processId(String processId) {
this.processId = processId;
return this;
}
/**
* the process definition id of the process instance which define this task
*
* @return processId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getProcessId() {
return processId;
}
@JsonProperty(JSON_PROPERTY_PROCESS_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setProcessId(String processId) {
this.processId = processId;
}
public Task parentCaseId(String parentCaseId) {
this.parentCaseId = parentCaseId;
return this;
}
/**
* the immediate containing process instance id (case id)
*
* @return parentCaseId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getParentCaseId() {
return parentCaseId;
}
@JsonProperty(JSON_PROPERTY_PARENT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setParentCaseId(String parentCaseId) {
this.parentCaseId = parentCaseId;
}
public Task parentTaskId(String parentTaskId) {
this.parentTaskId = parentTaskId;
return this;
}
/**
* the parent Task id
*
* @return parentTaskId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getParentTaskId() {
return parentTaskId;
}
@JsonProperty(JSON_PROPERTY_PARENT_TASK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setParentTaskId(String parentTaskId) {
this.parentTaskId = parentTaskId;
}
public Task rootCaseId(String rootCaseId) {
this.rootCaseId = rootCaseId;
return this;
}
/**
* the top/root process instance id (case id). In case of an \"event sub process\" `parentCaseId` will the id of the process instance called
* while `rootCaseId` will be the one from the caller process instance
*
* @return rootCaseId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRootCaseId() {
return rootCaseId;
}
@JsonProperty(JSON_PROPERTY_ROOT_CASE_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRootCaseId(String rootCaseId) {
this.rootCaseId = rootCaseId;
}
public Task rootContainerId(String rootContainerId) {
this.rootContainerId = rootContainerId;
return this;
}
/**
* same as rootCaseId
*
* @return rootContainerId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getRootContainerId() {
return rootContainerId;
}
@JsonProperty(JSON_PROPERTY_ROOT_CONTAINER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setRootContainerId(String rootContainerId) {
this.rootContainerId = rootContainerId;
}
public Task executedBy(String executedBy) {
this.executedBy = executedBy;
return this;
}
/**
* the id of the user who performed this task. The task has to be a human task otherwise its value will be 0
*
* @return executedBy
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getExecutedBy() {
return executedBy;
}
@JsonProperty(JSON_PROPERTY_EXECUTED_BY)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExecutedBy(String executedBy) {
this.executedBy = executedBy;
}
public Task executedBySubstitute(String executedBySubstitute) {
this.executedBySubstitute = executedBySubstitute;
return this;
}
/**
* the id of the user who did actually performed the task when it has been done in the name of someone else. Value is 0 otherwise
*
* @return executedBySubstitute
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getExecutedBySubstitute() {
return executedBySubstitute;
}
@JsonProperty(JSON_PROPERTY_EXECUTED_BY_SUBSTITUTE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setExecutedBySubstitute(String executedBySubstitute) {
this.executedBySubstitute = executedBySubstitute;
}
public Task actorId(String actorId) {
this.actorId = actorId;
return this;
}
/**
* the id of the actor that can execute this task null otherwise
*
* @return actorId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getActorId() {
return actorId;
}
@JsonProperty(JSON_PROPERTY_ACTOR_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setActorId(String actorId) {
this.actorId = actorId;
}
public Task assignedId(String assignedId) {
this.assignedId = assignedId;
return this;
}
/**
* the user id that this task is assigned to or 0 if it is unassigned
*
* @return assignedId
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAssignedId() {
return assignedId;
}
@JsonProperty(JSON_PROPERTY_ASSIGNED_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAssignedId(String assignedId) {
this.assignedId = assignedId;
}
public Task assignedDate(String assignedDate) {
this.assignedDate = assignedDate;
return this;
}
/**
* the date ('yyyy-MM-dd HH:mm:ss.SSS') when the current task was assigned for example '2014-10-17 16:05:42.626'
*
* @return assignedDate
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getAssignedDate() {
return assignedDate;
}
@JsonProperty(JSON_PROPERTY_ASSIGNED_DATE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setAssignedDate(String assignedDate) {
this.assignedDate = assignedDate;
}
public Task isTerminal(Boolean isTerminal) {
this.isTerminal = isTerminal;
return this;
}
/**
* True if the task is the last one in a flow
*
* @return isTerminal
*/
@jakarta.annotation.Nullable
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Boolean getIsTerminal() {
return isTerminal;
}
@JsonProperty(JSON_PROPERTY_IS_TERMINAL)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setIsTerminal(Boolean isTerminal) {
this.isTerminal = isTerminal;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Task task = (Task) o;
return Objects.equals(this.id, task.id) &&
Objects.equals(this.type, task.type) &&
Objects.equals(this.name, task.name) &&
Objects.equals(this.displayName, task.displayName) &&
Objects.equals(this.description, task.description) &&
Objects.equals(this.displayDescription, task.displayDescription) &&
Objects.equals(this.state, task.state) &&
Objects.equals(this.reachedStateDate, task.reachedStateDate) &&
Objects.equals(this.lastUpdateDate, task.lastUpdateDate) &&
Objects.equals(this.dueDate, task.dueDate) &&
Objects.equals(this.priority, task.priority) &&
Objects.equals(this.processId, task.processId) &&
Objects.equals(this.parentCaseId, task.parentCaseId) &&
Objects.equals(this.parentTaskId, task.parentTaskId) &&
Objects.equals(this.rootCaseId, task.rootCaseId) &&
Objects.equals(this.rootContainerId, task.rootContainerId) &&
Objects.equals(this.executedBy, task.executedBy) &&
Objects.equals(this.executedBySubstitute, task.executedBySubstitute) &&
Objects.equals(this.actorId, task.actorId) &&
Objects.equals(this.assignedId, task.assignedId) &&
Objects.equals(this.assignedDate, task.assignedDate) &&
Objects.equals(this.isTerminal, task.isTerminal);
}
@Override
public int hashCode() {
return Objects.hash(id, type, name, displayName, description, displayDescription, state, reachedStateDate,
lastUpdateDate, dueDate, priority, processId, parentCaseId, parentTaskId, rootCaseId, rootContainerId,
executedBy, executedBySubstitute, actorId, assignedId, assignedDate, isTerminal);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Task {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" displayName: ").append(toIndentedString(displayName)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" displayDescription: ").append(toIndentedString(displayDescription)).append("\n");
sb.append(" state: ").append(toIndentedString(state)).append("\n");
sb.append(" reachedStateDate: ").append(toIndentedString(reachedStateDate)).append("\n");
sb.append(" lastUpdateDate: ").append(toIndentedString(lastUpdateDate)).append("\n");
sb.append(" dueDate: ").append(toIndentedString(dueDate)).append("\n");
sb.append(" priority: ").append(toIndentedString(priority)).append("\n");
sb.append(" processId: ").append(toIndentedString(processId)).append("\n");
sb.append(" parentCaseId: ").append(toIndentedString(parentCaseId)).append("\n");
sb.append(" parentTaskId: ").append(toIndentedString(parentTaskId)).append("\n");
sb.append(" rootCaseId: ").append(toIndentedString(rootCaseId)).append("\n");
sb.append(" rootContainerId: ").append(toIndentedString(rootContainerId)).append("\n");
sb.append(" executedBy: ").append(toIndentedString(executedBy)).append("\n");
sb.append(" executedBySubstitute: ").append(toIndentedString(executedBySubstitute)).append("\n");
sb.append(" actorId: ").append(toIndentedString(actorId)).append("\n");
sb.append(" assignedId: ").append(toIndentedString(assignedId)).append("\n");
sb.append(" assignedDate: ").append(toIndentedString(assignedDate)).append("\n");
sb.append(" isTerminal: ").append(toIndentedString(isTerminal)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}