secureCodeBox/secureCodeBox

View on GitHub
hooks/persistence-defectdojo/hook/src/main/java/io/securecodebox/models/V1ScanStatus.java

Summary

Maintainability
C
1 day
Test Coverage
// SPDX-FileCopyrightText: the secureCodeBox authors
//
// SPDX-License-Identifier: Apache-2.0

/*
 * Kubernetes
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: v1.21.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

package io.securecodebox.models;

import java.util.Objects;

import com.google.gson.annotations.SerializedName;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;

import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.List;

/**
 * ScanStatus defines the observed state of Scan
 */
@ApiModel(description = "ScanStatus defines the observed state of Scan")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2021-11-17T10:13:00.848Z[Etc/UTC]")
public class V1ScanStatus {
  public static final String SERIALIZED_NAME_ERROR_DESCRIPTION = "errorDescription";
  @SerializedName(SERIALIZED_NAME_ERROR_DESCRIPTION)
  private String errorDescription;

  public static final String SERIALIZED_NAME_FINDING_DOWNLOAD_LINK = "findingDownloadLink";
  @SerializedName(SERIALIZED_NAME_FINDING_DOWNLOAD_LINK)
  private String findingDownloadLink;

  public static final String SERIALIZED_NAME_FINDING_HEAD_LINK = "findingHeadLink";
  @SerializedName(SERIALIZED_NAME_FINDING_HEAD_LINK)
  private String findingHeadLink;

  public static final String SERIALIZED_NAME_FINDINGS = "findings";
  @SerializedName(SERIALIZED_NAME_FINDINGS)
  private V1ScanStatusFindings findings;

  public static final String SERIALIZED_NAME_FINISHED_AT = "finishedAt";
  @SerializedName(SERIALIZED_NAME_FINISHED_AT)
  private OffsetDateTime finishedAt;

  public static final String SERIALIZED_NAME_ORDERED_HOOK_STATUSES = "orderedHookStatuses";
  @SerializedName(SERIALIZED_NAME_ORDERED_HOOK_STATUSES)
  private List<List<Object>> orderedHookStatuses = null;

  public static final String SERIALIZED_NAME_RAW_RESULT_DOWNLOAD_LINK = "rawResultDownloadLink";
  @SerializedName(SERIALIZED_NAME_RAW_RESULT_DOWNLOAD_LINK)
  private String rawResultDownloadLink;

  public static final String SERIALIZED_NAME_RAW_RESULT_FILE = "rawResultFile";
  @SerializedName(SERIALIZED_NAME_RAW_RESULT_FILE)
  private String rawResultFile;

  public static final String SERIALIZED_NAME_RAW_RESULT_HEAD_LINK = "rawResultHeadLink";
  @SerializedName(SERIALIZED_NAME_RAW_RESULT_HEAD_LINK)
  private String rawResultHeadLink;

  public static final String SERIALIZED_NAME_RAW_RESULT_TYPE = "rawResultType";
  @SerializedName(SERIALIZED_NAME_RAW_RESULT_TYPE)
  private String rawResultType;

  public static final String SERIALIZED_NAME_READ_AND_WRITE_HOOK_STATUS = "readAndWriteHookStatus";
  @SerializedName(SERIALIZED_NAME_READ_AND_WRITE_HOOK_STATUS)
  private List<V1ScanStatusReadAndWriteHookStatus> readAndWriteHookStatus = null;

  public static final String SERIALIZED_NAME_STATE = "state";
  @SerializedName(SERIALIZED_NAME_STATE)
  private String state;


  public V1ScanStatus errorDescription(String errorDescription) {

    this.errorDescription = errorDescription;
    return this;
  }

  /**
   * Get errorDescription
   *
   * @return errorDescription
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public String getErrorDescription() {
    return errorDescription;
  }


  public void setErrorDescription(String errorDescription) {
    this.errorDescription = errorDescription;
  }


  public V1ScanStatus findingDownloadLink(String findingDownloadLink) {

    this.findingDownloadLink = findingDownloadLink;
    return this;
  }

  /**
   * FindingDownloadLink link to download the finding json file from. Valid for 7 days
   *
   * @return findingDownloadLink
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "FindingDownloadLink link to download the finding json file from. Valid for 7 days")

  public String getFindingDownloadLink() {
    return findingDownloadLink;
  }


  public void setFindingDownloadLink(String findingDownloadLink) {
    this.findingDownloadLink = findingDownloadLink;
  }


  public V1ScanStatus findingHeadLink(String findingHeadLink) {

    this.findingHeadLink = findingHeadLink;
    return this;
  }

  /**
   * FindingHeadLink link to send HEAD request to the finding json file. Valid for 7 days
   *
   * @return findingHeadLink
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "FindingHeadLink link to send HEAD request to the finding json file. Valid for 7 days")

  public String getFindingHeadLink() {
    return findingHeadLink;
  }


  public void setFindingHeadLink(String findingHeadLink) {
    this.findingHeadLink = findingHeadLink;
  }


  public V1ScanStatus findings(V1ScanStatusFindings findings) {

    this.findings = findings;
    return this;
  }

  /**
   * Get findings
   *
   * @return findings
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public V1ScanStatusFindings getFindings() {
    return findings;
  }


  public void setFindings(V1ScanStatusFindings findings) {
    this.findings = findings;
  }


  public V1ScanStatus finishedAt(OffsetDateTime finishedAt) {

    this.finishedAt = finishedAt;
    return this;
  }

  /**
   * FinishedAt contains the time where the scan (including parser &amp; hooks) has been marked as \&quot;Done\&quot;
   *
   * @return finishedAt
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "FinishedAt contains the time where the scan (including parser & hooks) has been marked as \"Done\"")

  public OffsetDateTime getFinishedAt() {
    return finishedAt;
  }


  public void setFinishedAt(OffsetDateTime finishedAt) {
    this.finishedAt = finishedAt;
  }


  public V1ScanStatus orderedHookStatuses(List<List<Object>> orderedHookStatuses) {

    this.orderedHookStatuses = orderedHookStatuses;
    return this;
  }

  public V1ScanStatus addOrderedHookStatusesItem(List<Object> orderedHookStatusesItem) {
    if (this.orderedHookStatuses == null) {
      this.orderedHookStatuses = new ArrayList<>();
    }
    this.orderedHookStatuses.add(orderedHookStatusesItem);
    return this;
  }

  /**
   * Get orderedHookStatuses
   *
   * @return orderedHookStatuses
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public List<List<Object>> getOrderedHookStatuses() {
    return orderedHookStatuses;
  }


  public void setOrderedHookStatuses(List<List<Object>> orderedHookStatuses) {
    this.orderedHookStatuses = orderedHookStatuses;
  }


  public V1ScanStatus rawResultDownloadLink(String rawResultDownloadLink) {

    this.rawResultDownloadLink = rawResultDownloadLink;
    return this;
  }

  /**
   * RawResultDownloadLink link to download the raw result file from. Valid for 7 days
   *
   * @return rawResultDownloadLink
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "RawResultDownloadLink link to download the raw result file from. Valid for 7 days")

  public String getRawResultDownloadLink() {
    return rawResultDownloadLink;
  }


  public void setRawResultDownloadLink(String rawResultDownloadLink) {
    this.rawResultDownloadLink = rawResultDownloadLink;
  }


  public V1ScanStatus rawResultFile(String rawResultFile) {

    this.rawResultFile = rawResultFile;
    return this;
  }

  /**
   * RawResultFile Filename of the result file of the scanner. e.g. &#x60;nmap-result.xml&#x60;
   *
   * @return rawResultFile
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "RawResultFile Filename of the result file of the scanner. e.g. `nmap-result.xml`")

  public String getRawResultFile() {
    return rawResultFile;
  }


  public void setRawResultFile(String rawResultFile) {
    this.rawResultFile = rawResultFile;
  }


  public V1ScanStatus rawResultHeadLink(String rawResultHeadLink) {

    this.rawResultHeadLink = rawResultHeadLink;
    return this;
  }

  /**
   * RawResultHeadLink link to send HEAD request to raw result file. Valid for 7 days
   *
   * @return rawResultHeadLink
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "RawResultHeadLink link to send HEAD request to raw result file. Valid for 7 days")

  public String getRawResultHeadLink() {
    return rawResultHeadLink;
  }


  public void setRawResultHeadLink(String rawResultHeadLink) {
    this.rawResultHeadLink = rawResultHeadLink;
  }


  public V1ScanStatus rawResultType(String rawResultType) {

    this.rawResultType = rawResultType;
    return this;
  }

  /**
   * RawResultType determines which kind of ParseDefinition will be used to turn the raw results of the scanner into findings
   *
   * @return rawResultType
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "RawResultType determines which kind of ParseDefinition will be used to turn the raw results of the scanner into findings")

  public String getRawResultType() {
    return rawResultType;
  }


  public void setRawResultType(String rawResultType) {
    this.rawResultType = rawResultType;
  }


  public V1ScanStatus readAndWriteHookStatus(List<V1ScanStatusReadAndWriteHookStatus> readAndWriteHookStatus) {

    this.readAndWriteHookStatus = readAndWriteHookStatus;
    return this;
  }

  public V1ScanStatus addReadAndWriteHookStatusItem(V1ScanStatusReadAndWriteHookStatus readAndWriteHookStatusItem) {
    if (this.readAndWriteHookStatus == null) {
      this.readAndWriteHookStatus = new ArrayList<>();
    }
    this.readAndWriteHookStatus.add(readAndWriteHookStatusItem);
    return this;
  }

  /**
   * Get readAndWriteHookStatus
   *
   * @return readAndWriteHookStatus
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public List<V1ScanStatusReadAndWriteHookStatus> getReadAndWriteHookStatus() {
    return readAndWriteHookStatus;
  }


  public void setReadAndWriteHookStatus(List<V1ScanStatusReadAndWriteHookStatus> readAndWriteHookStatus) {
    this.readAndWriteHookStatus = readAndWriteHookStatus;
  }


  public V1ScanStatus state(String state) {

    this.state = state;
    return this;
  }

  /**
   * Get state
   *
   * @return state
   **/
  @javax.annotation.Nullable
  @ApiModelProperty(value = "")

  public String getState() {
    return state;
  }


  public void setState(String state) {
    this.state = state;
  }


  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    V1ScanStatus v1ScanStatus = (V1ScanStatus) o;
    return Objects.equals(this.errorDescription, v1ScanStatus.errorDescription) &&
      Objects.equals(this.findingDownloadLink, v1ScanStatus.findingDownloadLink) &&
      Objects.equals(this.findingHeadLink, v1ScanStatus.findingHeadLink) &&
      Objects.equals(this.findings, v1ScanStatus.findings) &&
      Objects.equals(this.finishedAt, v1ScanStatus.finishedAt) &&
      Objects.equals(this.orderedHookStatuses, v1ScanStatus.orderedHookStatuses) &&
      Objects.equals(this.rawResultDownloadLink, v1ScanStatus.rawResultDownloadLink) &&
      Objects.equals(this.rawResultFile, v1ScanStatus.rawResultFile) &&
      Objects.equals(this.rawResultHeadLink, v1ScanStatus.rawResultHeadLink) &&
      Objects.equals(this.rawResultType, v1ScanStatus.rawResultType) &&
      Objects.equals(this.readAndWriteHookStatus, v1ScanStatus.readAndWriteHookStatus) &&
      Objects.equals(this.state, v1ScanStatus.state);
  }

  @Override
  public int hashCode() {
    return Objects.hash(errorDescription, findingDownloadLink, findingHeadLink, findings, finishedAt, orderedHookStatuses, rawResultDownloadLink, rawResultFile, rawResultHeadLink, rawResultType, readAndWriteHookStatus, state);
  }


  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class V1ScanStatus {\n");
    sb.append("    errorDescription: ").append(toIndentedString(errorDescription)).append("\n");
    sb.append("    findingDownloadLink: ").append(toIndentedString(findingDownloadLink)).append("\n");
    sb.append("    findingHeadLink: ").append(toIndentedString(findingHeadLink)).append("\n");
    sb.append("    findings: ").append(toIndentedString(findings)).append("\n");
    sb.append("    finishedAt: ").append(toIndentedString(finishedAt)).append("\n");
    sb.append("    orderedHookStatuses: ").append(toIndentedString(orderedHookStatuses)).append("\n");
    sb.append("    rawResultDownloadLink: ").append(toIndentedString(rawResultDownloadLink)).append("\n");
    sb.append("    rawResultFile: ").append(toIndentedString(rawResultFile)).append("\n");
    sb.append("    rawResultHeadLink: ").append(toIndentedString(rawResultHeadLink)).append("\n");
    sb.append("    rawResultType: ").append(toIndentedString(rawResultType)).append("\n");
    sb.append("    readAndWriteHookStatus: ").append(toIndentedString(readAndWriteHookStatus)).append("\n");
    sb.append("    state: ").append(toIndentedString(state)).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    ");
  }

}