io.dekorate.servicebinding.config.ServiceConfigFluentImpl Maven / Gradle / Ivy
package io.dekorate.servicebinding.config;
import io.dekorate.kubernetes.config.ConfigurationFluentImpl;
import java.lang.SuppressWarnings;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class ServiceConfigFluentImpl> extends ConfigurationFluentImpl implements ServiceConfigFluent{
public ServiceConfigFluentImpl() {
}
public ServiceConfigFluentImpl(ServiceConfig instance) {
this.withProject(instance.getProject());
this.withAttributes(instance.getAttributes());
this.withGroup(instance.getGroup());
this.withKind(instance.getKind());
this.withName(instance.getName());
this.withVersion(instance.getVersion());
this.withId(instance.getId());
this.withNamespace(instance.getNamespace());
this.withEnvVarPrefix(instance.getEnvVarPrefix());
}
private String group;
private String kind;
private String name;
private String version;
private String id;
private String namespace;
private String envVarPrefix;
public String getGroup() {
return this.group;
}
public A withGroup(String group) {
this.group=group; return (A) this;
}
public Boolean hasGroup() {
return this.group != null;
}
public String getKind() {
return this.kind;
}
public A withKind(String kind) {
this.kind=kind; return (A) this;
}
public Boolean hasKind() {
return this.kind != null;
}
public String getName() {
return this.name;
}
public A withName(String name) {
this.name=name; return (A) this;
}
public Boolean hasName() {
return this.name != null;
}
public String getVersion() {
return this.version;
}
public A withVersion(String version) {
this.version=version; return (A) this;
}
public Boolean hasVersion() {
return this.version != null;
}
public String getId() {
return this.id;
}
public A withId(String id) {
this.id=id; return (A) this;
}
public Boolean hasId() {
return this.id != null;
}
public String getNamespace() {
return this.namespace;
}
public A withNamespace(String namespace) {
this.namespace=namespace; return (A) this;
}
public Boolean hasNamespace() {
return this.namespace != null;
}
public String getEnvVarPrefix() {
return this.envVarPrefix;
}
public A withEnvVarPrefix(String envVarPrefix) {
this.envVarPrefix=envVarPrefix; return (A) this;
}
public Boolean hasEnvVarPrefix() {
return this.envVarPrefix != 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;
ServiceConfigFluentImpl that = (ServiceConfigFluentImpl) o;
if (group != null ? !group.equals(that.group) :that.group != null) return false;
if (kind != null ? !kind.equals(that.kind) :that.kind != null) return false;
if (name != null ? !name.equals(that.name) :that.name != null) return false;
if (version != null ? !version.equals(that.version) :that.version != null) return false;
if (id != null ? !id.equals(that.id) :that.id != null) return false;
if (namespace != null ? !namespace.equals(that.namespace) :that.namespace != null) return false;
if (envVarPrefix != null ? !envVarPrefix.equals(that.envVarPrefix) :that.envVarPrefix != null) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(group, kind, name, version, id, namespace, envVarPrefix, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (group != null) { sb.append("group:"); sb.append(group + ","); }
if (kind != null) { sb.append("kind:"); sb.append(kind + ","); }
if (name != null) { sb.append("name:"); sb.append(name + ","); }
if (version != null) { sb.append("version:"); sb.append(version + ","); }
if (id != null) { sb.append("id:"); sb.append(id + ","); }
if (namespace != null) { sb.append("namespace:"); sb.append(namespace + ","); }
if (envVarPrefix != null) { sb.append("envVarPrefix:"); sb.append(envVarPrefix); }
sb.append("}");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy