io.fabric8.tekton.triggers.v1alpha1.SecretRefFluent Maven / Gradle / Ivy
package io.fabric8.tekton.triggers.v1alpha1;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class SecretRefFluent> extends BaseFluent{
public SecretRefFluent() {
}
public SecretRefFluent(SecretRef instance) {
this.copyInstance(instance);
}
private String secretKey;
private String secretName;
private Map additionalProperties;
protected void copyInstance(SecretRef instance) {
instance = (instance != null ? instance : new SecretRef());
if (instance != null) {
this.withSecretKey(instance.getSecretKey());
this.withSecretName(instance.getSecretName());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getSecretKey() {
return this.secretKey;
}
public A withSecretKey(String secretKey) {
this.secretKey = secretKey;
return (A) this;
}
public boolean hasSecretKey() {
return this.secretKey != null;
}
public String getSecretName() {
return this.secretName;
}
public A withSecretName(String secretName) {
this.secretName = secretName;
return (A) this;
}
public boolean hasSecretName() {
return this.secretName != 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;
SecretRefFluent that = (SecretRefFluent) o;
if (!java.util.Objects.equals(secretKey, that.secretKey)) return false;
if (!java.util.Objects.equals(secretName, that.secretName)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(secretKey, secretName, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (secretKey != null) { sb.append("secretKey:"); sb.append(secretKey + ","); }
if (secretName != null) { sb.append("secretName:"); sb.append(secretName + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
}