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

org.lockss.laaws.mdq.model.UrlInfo Maven / Gradle / Ivy

The newest version!
package org.lockss.laaws.mdq.model;

import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.validation.annotation.Validated;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;

/**
 * The information related to a resulting list of URLs
 */
@Schema(description = "The information related to a resulting list of URLs")
@Validated



public class UrlInfo   {
  @JsonProperty("params")
  @Valid
  private Map params = new HashMap<>();

  @JsonProperty("urls")
  @Valid
  private List urls = new ArrayList<>();

  public UrlInfo params(Map params) {
    this.params = params;
    return this;
  }

  public UrlInfo putParamsItem(String key, String paramsItem) {
    this.params.put(key, paramsItem);
    return this;
  }

  /**
   * The parameters that define the resulting URLs
   * @return params
   **/
  @Schema(required = true, description = "The parameters that define the resulting URLs")
      @NotNull

    public Map getParams() {
    return params;
  }

  public void setParams(Map params) {
    this.params = params;
  }

  public UrlInfo urls(List urls) {
    this.urls = urls;
    return this;
  }

  public UrlInfo addUrlsItem(String urlsItem) {
    this.urls.add(urlsItem);
    return this;
  }

  /**
   * The URLs
   * @return urls
   **/
  @Schema(required = true, description = "The URLs")
      @NotNull

    public List getUrls() {
    return urls;
  }

  public void setUrls(List urls) {
    this.urls = urls;
  }


  @Override
  public boolean equals(java.lang.Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    UrlInfo urlInfo = (UrlInfo) o;
    return Objects.equals(this.params, urlInfo.params) &&
        Objects.equals(this.urls, urlInfo.urls);
  }

  @Override
  public int hashCode() {
    return Objects.hash(params, urls);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class UrlInfo {\n");
    
    sb.append("    params: ").append(toIndentedString(params)).append("\n");
    sb.append("    urls: ").append(toIndentedString(urls)).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(java.lang.Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy