
org.camunda.community.rest.client.dto.LockExternalTaskDto Maven / Gradle / Ivy
/*
* Camunda Platform REST API
* OpenApi Spec for Camunda Platform REST API.
*
* The version of the OpenAPI document: 7.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.camunda.community.rest.client.dto;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.StringJoiner;
/**
* LockExternalTaskDto
*/
@JsonPropertyOrder({
LockExternalTaskDto.JSON_PROPERTY_WORKER_ID,
LockExternalTaskDto.JSON_PROPERTY_LOCK_DURATION
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class LockExternalTaskDto {
public static final String JSON_PROPERTY_WORKER_ID = "workerId";
private String workerId;
public static final String JSON_PROPERTY_LOCK_DURATION = "lockDuration";
private Long lockDuration;
public LockExternalTaskDto() {
}
public LockExternalTaskDto workerId(String workerId) {
this.workerId = workerId;
return this;
}
/**
* **Mandatory.** The ID of the worker who is performing the operation on the external task. If the task is already locked, must match the id of the worker who has most recently locked the task.
* @return workerId
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_WORKER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getWorkerId() {
return workerId;
}
@JsonProperty(JSON_PROPERTY_WORKER_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setWorkerId(String workerId) {
this.workerId = workerId;
}
public LockExternalTaskDto lockDuration(Long lockDuration) {
this.lockDuration = lockDuration;
return this;
}
/**
* The duration to lock the external task for in milliseconds. **Note:** Attempting to lock an already locked external task with the same `workerId` will succeed and a new lock duration will be set, starting from the current moment.
* @return lockDuration
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_LOCK_DURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public Long getLockDuration() {
return lockDuration;
}
@JsonProperty(JSON_PROPERTY_LOCK_DURATION)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setLockDuration(Long lockDuration) {
this.lockDuration = lockDuration;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
LockExternalTaskDto lockExternalTaskDto = (LockExternalTaskDto) o;
return Objects.equals(this.workerId, lockExternalTaskDto.workerId) &&
Objects.equals(this.lockDuration, lockExternalTaskDto.lockDuration);
}
@Override
public int hashCode() {
return Objects.hash(workerId, lockDuration);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class LockExternalTaskDto {\n");
sb.append(" workerId: ").append(toIndentedString(workerId)).append("\n");
sb.append(" lockDuration: ").append(toIndentedString(lockDuration)).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 ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `workerId` to the URL query string
if (getWorkerId() != null) {
try {
joiner.add(String.format("%sworkerId%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getWorkerId()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `lockDuration` to the URL query string
if (getLockDuration() != null) {
try {
joiner.add(String.format("%slockDuration%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getLockDuration()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy