io.fabric8.knative.eventing.v1alpha1.SecretFluent Maven / Gradle / Ivy
package io.fabric8.knative.eventing.v1alpha1;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.Nested;
import java.lang.String;
import java.util.LinkedHashMap;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.util.Map;
/**
* Generated
*/
@SuppressWarnings("unchecked")
public class SecretFluent> extends BaseFluent{
public SecretFluent() {
}
public SecretFluent(Secret instance) {
this.copyInstance(instance);
}
private SecretReferenceBuilder ref;
private Map additionalProperties;
protected void copyInstance(Secret instance) {
instance = (instance != null ? instance : new Secret());
if (instance != null) {
this.withRef(instance.getRef());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public SecretReference buildRef() {
return this.ref != null ? this.ref.build() : null;
}
public A withRef(SecretReference ref) {
this._visitables.remove("ref");
if (ref != null) {
this.ref = new SecretReferenceBuilder(ref);
this._visitables.get("ref").add(this.ref);
} else {
this.ref = null;
this._visitables.get("ref").remove(this.ref);
}
return (A) this;
}
public boolean hasRef() {
return this.ref != null;
}
public A withNewRef(String name) {
return (A)withRef(new SecretReference(name));
}
public RefNested withNewRef() {
return new RefNested(null);
}
public RefNested withNewRefLike(SecretReference item) {
return new RefNested(item);
}
public RefNested editRef() {
return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(null));
}
public RefNested editOrNewRef() {
return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(new SecretReferenceBuilder().build()));
}
public RefNested editOrNewRefLike(SecretReference item) {
return withNewRefLike(java.util.Optional.ofNullable(buildRef()).orElse(item));
}
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;
SecretFluent that = (SecretFluent) o;
if (!java.util.Objects.equals(ref, that.ref)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(ref, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (ref != null) { sb.append("ref:"); sb.append(ref + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
public class RefNested extends SecretReferenceFluent> implements Nested{
RefNested(SecretReference item) {
this.builder = new SecretReferenceBuilder(this, item);
}
SecretReferenceBuilder builder;
public N and() {
return (N) SecretFluent.this.withRef(builder.build());
}
public N endRef() {
return and();
}
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy