Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.camunda.community.rest.client.dto.ParseExceptionDto 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 java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
import org.camunda.community.rest.client.dto.ResourceReportDto;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.StringJoiner;
/**
* ParseExceptionDto
*/
@JsonPropertyOrder({
ParseExceptionDto.JSON_PROPERTY_TYPE,
ParseExceptionDto.JSON_PROPERTY_MESSAGE,
ParseExceptionDto.JSON_PROPERTY_CODE,
ParseExceptionDto.JSON_PROPERTY_DETAILS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class ParseExceptionDto {
public static final String JSON_PROPERTY_TYPE = "type";
private JsonNullable type = JsonNullable.undefined();
public static final String JSON_PROPERTY_MESSAGE = "message";
private JsonNullable message = JsonNullable.undefined();
public static final String JSON_PROPERTY_CODE = "code";
private BigDecimal code;
public static final String JSON_PROPERTY_DETAILS = "details";
private JsonNullable> details = JsonNullable.>undefined();
public ParseExceptionDto() {
}
public ParseExceptionDto type(String type) {
this.type = JsonNullable.of(type);
return this;
}
/**
* An exception class indicating the occurred error.
* @return type
**/
@javax.annotation.Nullable
@JsonIgnore
public String getType() {
return type.orElse(null);
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getType_JsonNullable() {
return type;
}
@JsonProperty(JSON_PROPERTY_TYPE)
public void setType_JsonNullable(JsonNullable type) {
this.type = type;
}
public void setType(String type) {
this.type = JsonNullable.of(type);
}
public ParseExceptionDto message(String message) {
this.message = JsonNullable.of(message);
return this;
}
/**
* A detailed message of the error.
* @return message
**/
@javax.annotation.Nullable
@JsonIgnore
public String getMessage() {
return message.orElse(null);
}
@JsonProperty(JSON_PROPERTY_MESSAGE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getMessage_JsonNullable() {
return message;
}
@JsonProperty(JSON_PROPERTY_MESSAGE)
public void setMessage_JsonNullable(JsonNullable message) {
this.message = message;
}
public void setMessage(String message) {
this.message = JsonNullable.of(message);
}
public ParseExceptionDto code(BigDecimal code) {
this.code = code;
return this;
}
/**
* The code allows your client application to identify the error in an automated fashion. You can look up the meaning of all built-in codes and learn how to add custom codes in the [User Guide](https://docs.camunda.org/manual/7.21/user-guide/process-engine/error-handling/#exception-codes).
* @return code
**/
@javax.annotation.Nullable
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public BigDecimal getCode() {
return code;
}
@JsonProperty(JSON_PROPERTY_CODE)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setCode(BigDecimal code) {
this.code = code;
}
public ParseExceptionDto details(Map details) {
this.details = JsonNullable.>of(details);
return this;
}
public ParseExceptionDto putDetailsItem(String key, ResourceReportDto detailsItem) {
if (this.details == null || !this.details.isPresent()) {
this.details = JsonNullable.>of(new HashMap<>());
}
try {
this.details.get().put(key, detailsItem);
} catch (java.util.NoSuchElementException e) {
// this can never happen, as we make sure above that the value is present
}
return this;
}
/**
* A JSON Object containing list of errors and warnings occurred during deployment.
* @return details
**/
@javax.annotation.Nullable
@JsonIgnore
public Map getDetails() {
return details.orElse(null);
}
@JsonProperty(JSON_PROPERTY_DETAILS)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable> getDetails_JsonNullable() {
return details;
}
@JsonProperty(JSON_PROPERTY_DETAILS)
public void setDetails_JsonNullable(JsonNullable> details) {
this.details = details;
}
public void setDetails(Map details) {
this.details = JsonNullable.>of(details);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ParseExceptionDto parseExceptionDto = (ParseExceptionDto) o;
return equalsNullable(this.type, parseExceptionDto.type) &&
equalsNullable(this.message, parseExceptionDto.message) &&
Objects.equals(this.code, parseExceptionDto.code) &&
equalsNullable(this.details, parseExceptionDto.details);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(hashCodeNullable(type), hashCodeNullable(message), code, hashCodeNullable(details));
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ParseExceptionDto {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" details: ").append(toIndentedString(details)).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 `type` to the URL query string
if (getType() != null) {
try {
joiner.add(String.format("%stype%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getType()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `message` to the URL query string
if (getMessage() != null) {
try {
joiner.add(String.format("%smessage%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getMessage()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `code` to the URL query string
if (getCode() != null) {
try {
joiner.add(String.format("%scode%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getCode()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `details` to the URL query string
if (getDetails() != null) {
for (String _key : getDetails().keySet()) {
if (getDetails().get(_key) != null) {
joiner.add(getDetails().get(_key).toUrlQueryString(String.format("%sdetails%s%s", prefix, suffix,
"".equals(suffix) ? "" : String.format("%s%d%s", containerPrefix, _key, containerSuffix))));
}
}
}
return joiner.toString();
}
}