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

org.camunda.community.rest.client.dto.TaskCountByCandidateGroupResultDto 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 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;

/**
 * TaskCountByCandidateGroupResultDto
 */
@JsonPropertyOrder({
  TaskCountByCandidateGroupResultDto.JSON_PROPERTY_GROUP_NAME,
  TaskCountByCandidateGroupResultDto.JSON_PROPERTY_TASK_COUNT
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class TaskCountByCandidateGroupResultDto {
  public static final String JSON_PROPERTY_GROUP_NAME = "groupName";
  private JsonNullable groupName = JsonNullable.undefined();

  public static final String JSON_PROPERTY_TASK_COUNT = "taskCount";
  private JsonNullable taskCount = JsonNullable.undefined();

  public TaskCountByCandidateGroupResultDto() {
  }

  public TaskCountByCandidateGroupResultDto groupName(String groupName) {
    this.groupName = JsonNullable.of(groupName);
    
    return this;
  }

   /**
   * The name of the candidate group. If there are tasks without a group name, the value will be `null`
   * @return groupName
  **/
  @javax.annotation.Nullable
  @JsonIgnore

  public String getGroupName() {
        return groupName.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_GROUP_NAME)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getGroupName_JsonNullable() {
    return groupName;
  }
  
  @JsonProperty(JSON_PROPERTY_GROUP_NAME)
  public void setGroupName_JsonNullable(JsonNullable groupName) {
    this.groupName = groupName;
  }

  public void setGroupName(String groupName) {
    this.groupName = JsonNullable.of(groupName);
  }


  public TaskCountByCandidateGroupResultDto taskCount(Integer taskCount) {
    this.taskCount = JsonNullable.of(taskCount);
    
    return this;
  }

   /**
   * The number of tasks which have the group name as candidate group.
   * @return taskCount
  **/
  @javax.annotation.Nullable
  @JsonIgnore

  public Integer getTaskCount() {
        return taskCount.orElse(null);
  }

  @JsonProperty(JSON_PROPERTY_TASK_COUNT)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

  public JsonNullable getTaskCount_JsonNullable() {
    return taskCount;
  }
  
  @JsonProperty(JSON_PROPERTY_TASK_COUNT)
  public void setTaskCount_JsonNullable(JsonNullable taskCount) {
    this.taskCount = taskCount;
  }

  public void setTaskCount(Integer taskCount) {
    this.taskCount = JsonNullable.of(taskCount);
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    TaskCountByCandidateGroupResultDto taskCountByCandidateGroupResultDto = (TaskCountByCandidateGroupResultDto) o;
    return equalsNullable(this.groupName, taskCountByCandidateGroupResultDto.groupName) &&
        equalsNullable(this.taskCount, taskCountByCandidateGroupResultDto.taskCount);
  }

  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(groupName), hashCodeNullable(taskCount));
  }

  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 TaskCountByCandidateGroupResultDto {\n");
    sb.append("    groupName: ").append(toIndentedString(groupName)).append("\n");
    sb.append("    taskCount: ").append(toIndentedString(taskCount)).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 `groupName` to the URL query string
    if (getGroupName() != null) {
      try {
        joiner.add(String.format("%sgroupName%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getGroupName()), "UTF-8").replaceAll("\\+", "%20")));
      } catch (UnsupportedEncodingException e) {
        // Should never happen, UTF-8 is always supported
        throw new RuntimeException(e);
      }
    }

    // add `taskCount` to the URL query string
    if (getTaskCount() != null) {
      try {
        joiner.add(String.format("%staskCount%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getTaskCount()), "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