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

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

/*
 * Domino Data Lab API v4
 * This API is going to provide access to all the Domino functions available in the user interface. 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;


/**
 * DominoServerAccountApiGitCredentialAccessorDto
 */
@JsonPropertyOrder({
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_ID,
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_NAME,
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_GIT_SERVICE_PROVIDER,
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_DOMAIN,
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_FINGERPRINT,
  DominoServerAccountApiGitCredentialAccessorDto.JSON_PROPERTY_PROTOCOL
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2023-10-17T15:20:46.682098100-04:00[America/New_York]")
public class DominoServerAccountApiGitCredentialAccessorDto {
  public static final String JSON_PROPERTY_ID = "id";
  private String id;

  public static final String JSON_PROPERTY_NAME = "name";
  private String name;

  /**
   * Gets or Sets gitServiceProvider
   */
  public enum GitServiceProviderEnum {
    GITHUB("github"),
    
    GITLAB("gitlab"),
    
    GITHUBENTERPRISE("githubEnterprise"),
    
    UNKNOWN("unknown"),
    
    GITLABENTERPRISE("gitlabEnterprise"),
    
    BITBUCKET("bitbucket"),
    
    BITBUCKETSERVER("bitbucketServer");

    private String value;

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

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

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

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

  public static final String JSON_PROPERTY_GIT_SERVICE_PROVIDER = "gitServiceProvider";
  private GitServiceProviderEnum gitServiceProvider;

  public static final String JSON_PROPERTY_DOMAIN = "domain";
  private String domain;

  public static final String JSON_PROPERTY_FINGERPRINT = "fingerprint";
  private String fingerprint;

  public static final String JSON_PROPERTY_PROTOCOL = "protocol";
  private String protocol;

  public DominoServerAccountApiGitCredentialAccessorDto() { 
  }

  public DominoServerAccountApiGitCredentialAccessorDto id(String id) {
    this.id = id;
    return this;
  }

   /**
   * Get id
   * @return id
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getId() {
    return id;
  }


  @JsonProperty(JSON_PROPERTY_ID)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setId(String id) {
    this.id = id;
  }


  public DominoServerAccountApiGitCredentialAccessorDto name(String name) {
    this.name = name;
    return this;
  }

   /**
   * Get name
   * @return name
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getName() {
    return name;
  }


  @JsonProperty(JSON_PROPERTY_NAME)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setName(String name) {
    this.name = name;
  }


  public DominoServerAccountApiGitCredentialAccessorDto gitServiceProvider(GitServiceProviderEnum gitServiceProvider) {
    this.gitServiceProvider = gitServiceProvider;
    return this;
  }

   /**
   * Get gitServiceProvider
   * @return gitServiceProvider
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_GIT_SERVICE_PROVIDER)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public GitServiceProviderEnum getGitServiceProvider() {
    return gitServiceProvider;
  }


  @JsonProperty(JSON_PROPERTY_GIT_SERVICE_PROVIDER)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setGitServiceProvider(GitServiceProviderEnum gitServiceProvider) {
    this.gitServiceProvider = gitServiceProvider;
  }


  public DominoServerAccountApiGitCredentialAccessorDto domain(String domain) {
    this.domain = domain;
    return this;
  }

   /**
   * Get domain
   * @return domain
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_DOMAIN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getDomain() {
    return domain;
  }


  @JsonProperty(JSON_PROPERTY_DOMAIN)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setDomain(String domain) {
    this.domain = domain;
  }


  public DominoServerAccountApiGitCredentialAccessorDto fingerprint(String fingerprint) {
    this.fingerprint = fingerprint;
    return this;
  }

   /**
   * Get fingerprint
   * @return fingerprint
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_FINGERPRINT)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getFingerprint() {
    return fingerprint;
  }


  @JsonProperty(JSON_PROPERTY_FINGERPRINT)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setFingerprint(String fingerprint) {
    this.fingerprint = fingerprint;
  }


  public DominoServerAccountApiGitCredentialAccessorDto protocol(String protocol) {
    this.protocol = protocol;
    return this;
  }

   /**
   * Get protocol
   * @return protocol
  **/
  @javax.annotation.Nonnull
  @JsonProperty(JSON_PROPERTY_PROTOCOL)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)

  public String getProtocol() {
    return protocol;
  }


  @JsonProperty(JSON_PROPERTY_PROTOCOL)
  @JsonInclude(value = JsonInclude.Include.ALWAYS)
  public void setProtocol(String protocol) {
    this.protocol = protocol;
  }


  /**
   * Return true if this domino.server.account.api.GitCredentialAccessorDto object is equal to o.
   */
  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    DominoServerAccountApiGitCredentialAccessorDto dominoServerAccountApiGitCredentialAccessorDto = (DominoServerAccountApiGitCredentialAccessorDto) o;
    return Objects.equals(this.id, dominoServerAccountApiGitCredentialAccessorDto.id) &&
        Objects.equals(this.name, dominoServerAccountApiGitCredentialAccessorDto.name) &&
        Objects.equals(this.gitServiceProvider, dominoServerAccountApiGitCredentialAccessorDto.gitServiceProvider) &&
        Objects.equals(this.domain, dominoServerAccountApiGitCredentialAccessorDto.domain) &&
        Objects.equals(this.fingerprint, dominoServerAccountApiGitCredentialAccessorDto.fingerprint) &&
        Objects.equals(this.protocol, dominoServerAccountApiGitCredentialAccessorDto.protocol);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, name, gitServiceProvider, domain, fingerprint, protocol);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class DominoServerAccountApiGitCredentialAccessorDto {\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("    gitServiceProvider: ").append(toIndentedString(gitServiceProvider)).append("\n");
    sb.append("    domain: ").append(toIndentedString(domain)).append("\n");
    sb.append("    fingerprint: ").append(toIndentedString(fingerprint)).append("\n");
    sb.append("    protocol: ").append(toIndentedString(protocol)).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 `id` to the URL query string
    if (getId() != null) {
      joiner.add(String.format("%sid%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getId()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `name` to the URL query string
    if (getName() != null) {
      joiner.add(String.format("%sname%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getName()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `gitServiceProvider` to the URL query string
    if (getGitServiceProvider() != null) {
      joiner.add(String.format("%sgitServiceProvider%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getGitServiceProvider()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `domain` to the URL query string
    if (getDomain() != null) {
      joiner.add(String.format("%sdomain%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getDomain()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `fingerprint` to the URL query string
    if (getFingerprint() != null) {
      joiner.add(String.format("%sfingerprint%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getFingerprint()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    // add `protocol` to the URL query string
    if (getProtocol() != null) {
      joiner.add(String.format("%sprotocol%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getProtocol()), StandardCharsets.UTF_8).replaceAll("\\+", "%20")));
    }

    return joiner.toString();
  }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy