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

io.fabric8.knative.internal.networking.v1alpha1.HTTPRetryFluent Maven / Gradle / Ivy

The newest version!
package io.fabric8.knative.internal.networking.v1alpha1;

import java.lang.Integer;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import io.fabric8.kubernetes.api.model.Duration;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;

/**
 * Generated
 */
@SuppressWarnings("unchecked")
public class HTTPRetryFluent> extends BaseFluent{
  public HTTPRetryFluent() {
  }
  
  public HTTPRetryFluent(HTTPRetry instance) {
    this.copyInstance(instance);
  }
  private Integer attempts;
  private Duration perTryTimeout;
  private Map additionalProperties;
  
  protected void copyInstance(HTTPRetry instance) {
    instance = (instance != null ? instance : new HTTPRetry());
    if (instance != null) {
          this.withAttempts(instance.getAttempts());
          this.withPerTryTimeout(instance.getPerTryTimeout());
          this.withAdditionalProperties(instance.getAdditionalProperties());
        }
  }
  
  public Integer getAttempts() {
    return this.attempts;
  }
  
  public A withAttempts(Integer attempts) {
    this.attempts = attempts;
    return (A) this;
  }
  
  public boolean hasAttempts() {
    return this.attempts != null;
  }
  
  public Duration getPerTryTimeout() {
    return this.perTryTimeout;
  }
  
  public A withPerTryTimeout(Duration perTryTimeout) {
    this.perTryTimeout = perTryTimeout;
    return (A) this;
  }
  
  public boolean hasPerTryTimeout() {
    return this.perTryTimeout != null;
  }
  
  public A addToAdditionalProperties(String key,Object value) {
    if(this.additionalProperties == null && key != null && value != null) { this.additionalProperties = new LinkedHashMap(); }
    if(key != null && value != null) {this.additionalProperties.put(key, value);} return (A)this;
  }
  
  public A addToAdditionalProperties(Map map) {
    if(this.additionalProperties == null && map != null) { this.additionalProperties = new LinkedHashMap(); }
    if(map != null) { this.additionalProperties.putAll(map);} return (A)this;
  }
  
  public A removeFromAdditionalProperties(String key) {
    if(this.additionalProperties == null) { return (A) this; }
    if(key != null && this.additionalProperties != null) {this.additionalProperties.remove(key);} return (A)this;
  }
  
  public A removeFromAdditionalProperties(Map map) {
    if(this.additionalProperties == null) { return (A) this; }
    if(map != null) { for(Object key : map.keySet()) {if (this.additionalProperties != null){this.additionalProperties.remove(key);}}} return (A)this;
  }
  
  public Map getAdditionalProperties() {
    return this.additionalProperties;
  }
  
  public A withAdditionalProperties(Map additionalProperties) {
    if (additionalProperties == null) {
      this.additionalProperties = null;
    } else {
      this.additionalProperties = new LinkedHashMap(additionalProperties);
    }
    return (A) this;
  }
  
  public boolean hasAdditionalProperties() {
    return this.additionalProperties != null;
  }
  
  public boolean equals(Object o) {
    if (this == o) return true;
    if (o == null || getClass() != o.getClass()) return false;
    if (!super.equals(o)) return false;
    HTTPRetryFluent that = (HTTPRetryFluent) o;
    if (!java.util.Objects.equals(attempts, that.attempts)) return false;
    if (!java.util.Objects.equals(perTryTimeout, that.perTryTimeout)) return false;
    if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
    return true;
  }
  
  public int hashCode() {
    return java.util.Objects.hash(attempts,  perTryTimeout,  additionalProperties,  super.hashCode());
  }
  
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("{");
    if (attempts != null) { sb.append("attempts:"); sb.append(attempts + ","); }
    if (perTryTimeout != null) { sb.append("perTryTimeout:"); sb.append(perTryTimeout + ","); }
    if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
    sb.append("}");
    return sb.toString();
  }
  

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy