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

com.dominodatalab.api.model.DominoServerProjectsApiProjectStatus Maven / Gradle / Ivy

Go to download

Domino Data Lab API Client to connect to Domino web services using Java HTTP Client.

There is a newer version: 6.0.1.0
Show newest version
/*
 * Domino Data Lab API v4
 * This API provides access to select Domino functions available in Domino's non-public API. To authenticate your requests, include your API Key (which you can find on your account page) with the header X-Domino-Api-Key. 
 *
 * The version of the OpenAPI document: 4.0.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 com.dominodatalab.api.model;

import java.net.URLEncoder;
import java.nio.charset.StandardCharsets;
import java.util.StringJoiner;
import java.util.Objects;
import java.util.Map;
import java.util.HashMap;
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.util.Arrays;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;


import com.dominodatalab.api.invoker.ApiClient;
/**
 * DominoServerProjectsApiProjectStatus
 */
@JsonPropertyOrder({
  DominoServerProjectsApiProjectStatus.JSON_PROPERTY_BLOCKED_REASON,
  DominoServerProjectsApiProjectStatus.JSON_PROPERTY_COMPLETED_MESSAGE,
  DominoServerProjectsApiProjectStatus.JSON_PROPERTY_IS_BLOCKED,
  DominoServerProjectsApiProjectStatus.JSON_PROPERTY_STATUS
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-10-04T16:37:26.309454-04:00[America/New_York]", comments = "Generator version: 7.8.0")
public class DominoServerProjectsApiProjectStatus {
  public static final String JSON_PROPERTY_BLOCKED_REASON = "blockedReason";
  private String blockedReason;

  public static final String JSON_PROPERTY_COMPLETED_MESSAGE = "completedMessage";
  private String completedMessage;

  public static final String JSON_PROPERTY_IS_BLOCKED = "isBlocked";
  private Boolean isBlocked;

  /**
   * Gets or Sets status
   */
  public enum StatusEnum {
    ACTIVE("active"),
    
    COMPLETE("complete");

    private String value;

    StatusEnum(String value) {
      this.value = value;
    }

    @JsonValue
    public String getValue() {
      return value;
    }

    @Override
    public String toString() {
      return String.valueOf(value);
    }

    @JsonCreator
    public static StatusEnum fromValue(String value) {
      for (StatusEnum b : StatusEnum.values()) {
        if (b.value.equals(value)) {
          return b;
        }
      }
      throw new IllegalArgumentException("Unexpected value '" + value + "'");
    }
  }

  public static final String JSON_PROPERTY_STATUS = "status";
  private StatusEnum status;

  public DominoServerProjectsApiProjectStatus() { 
  }

  public DominoServerProjectsApiProjectStatus blockedReason(String blockedReason) {
    this.blockedReason = blockedReason;
    return this;
  }

  /**
   * Get blockedReason
   * @return blockedReason
   */
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_BLOCKED_REASON)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getBlockedReason() {
    return blockedReason;
  }


  @JsonProperty(JSON_PROPERTY_BLOCKED_REASON)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setBlockedReason(String blockedReason) {
    this.blockedReason = blockedReason;
  }


  public DominoServerProjectsApiProjectStatus completedMessage(String completedMessage) {
    this.completedMessage = completedMessage;
    return this;
  }

  /**
   * Get completedMessage
   * @return completedMessage
   */
  @javax.annotation.Nullable
  @JsonProperty(JSON_PROPERTY_COMPLETED_MESSAGE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public String getCompletedMessage() {
    return completedMessage;
  }


  @JsonProperty(JSON_PROPERTY_COMPLETED_MESSAGE)
  @JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
  public void setCompletedMessage(String completedMessage) {
    this.completedMessage = completedMessage;
  }


  public DominoServerProjectsApiProjectStatus isBlocked(Boolean isBlocked) {
    this.isBlocked = isBlocked;
    return this;
  }

  /**
   * Get isBlocked
   * @return isBlocked
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_IS_BLOCKED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public Boolean getIsBlocked() {
    return isBlocked;
  }


  @JsonProperty(JSON_PROPERTY_IS_BLOCKED)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setIsBlocked(Boolean isBlocked) {
    this.isBlocked = isBlocked;
  }


  public DominoServerProjectsApiProjectStatus status(StatusEnum status) {
    this.status = status;
    return this;
  }

  /**
   * Get status
   * @return status
   */
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public StatusEnum getStatus() {
    return status;
  }


  @JsonProperty(JSON_PROPERTY_STATUS)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setStatus(StatusEnum status) {
    this.status = status;
  }


  /**
   * Return true if this domino.server.projects.api.ProjectStatus object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoServerProjectsApiProjectStatus dominoServerProjectsApiProjectStatus = (DominoServerProjectsApiProjectStatus) o;
    return Objects.equals(this.blockedReason, dominoServerProjectsApiProjectStatus.blockedReason) &&
        Objects.equals(this.completedMessage, dominoServerProjectsApiProjectStatus.completedMessage) &&
        Objects.equals(this.isBlocked, dominoServerProjectsApiProjectStatus.isBlocked) &&
        Objects.equals(this.status, dominoServerProjectsApiProjectStatus.status);
  }

  @Override
  public int hashCode() {
    return Objects.hash(blockedReason, completedMessage, isBlocked, status);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoServerProjectsApiProjectStatus {\n");
    sb.append("    blockedReason: ").append(toIndentedString(blockedReason)).append("\n");
    sb.append("    completedMessage: ").append(toIndentedString(completedMessage)).append("\n");
    sb.append("    isBlocked: ").append(toIndentedString(isBlocked)).append("\n");
    sb.append("    status: ").append(toIndentedString(status)).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 `blockedReason` to the URL query string
    if (getBlockedReason() != null) {
      joiner.add(String.format("%sblockedReason%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getBlockedReason()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `completedMessage` to the URL query string
    if (getCompletedMessage() != null) {
      joiner.add(String.format("%scompletedMessage%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getCompletedMessage()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `isBlocked` to the URL query string
    if (getIsBlocked() != null) {
      joiner.add(String.format("%sisBlocked%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getIsBlocked()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `status` to the URL query string
    if (getStatus() != null) {
      joiner.add(String.format("%sstatus%s=%s", prefix, suffix, URLEncoder.encode(ApiClient.valueToString(getStatus()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy