io.fabric8.openshift.api.model.installer.vsphere.v1.VCentersFluent Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.installer.vsphere.v1;
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 VCentersFluent> extends BaseFluent{
public VCentersFluent() {
}
public VCentersFluent(VCenters instance) {
this.copyInstance(instance);
}
private String password;
private String username;
private String vCenter;
private Map additionalProperties;
protected void copyInstance(VCenters instance) {
instance = (instance != null ? instance : new VCenters());
if (instance != null) {
this.withPassword(instance.getPassword());
this.withUsername(instance.getUsername());
this.withVCenter(instance.getVCenter());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
public String getPassword() {
return this.password;
}
public A withPassword(String password) {
this.password = password;
return (A) this;
}
public boolean hasPassword() {
return this.password != null;
}
public String getUsername() {
return this.username;
}
public A withUsername(String username) {
this.username = username;
return (A) this;
}
public boolean hasUsername() {
return this.username != null;
}
public String getVCenter() {
return this.vCenter;
}
public A withVCenter(String vCenter) {
this.vCenter = vCenter;
return (A) this;
}
public boolean hasVCenter() {
return this.vCenter != 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;
VCentersFluent that = (VCentersFluent) o;
if (!java.util.Objects.equals(password, that.password)) return false;
if (!java.util.Objects.equals(username, that.username)) return false;
if (!java.util.Objects.equals(vCenter, that.vCenter)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(password, username, vCenter, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (password != null) { sb.append("password:"); sb.append(password + ","); }
if (username != null) { sb.append("username:"); sb.append(username + ","); }
if (vCenter != null) { sb.append("vCenter:"); sb.append(vCenter + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy