io.fabric8.openshift.api.model.miscellaneous.cloudcredential.v1.CredentialsRequestConditionFluentImpl Maven / Gradle / Ivy
package io.fabric8.openshift.api.model.miscellaneous.cloudcredential.v1;
import java.lang.SuppressWarnings;
import io.fabric8.kubernetes.api.builder.BaseFluent;
import java.lang.Object;
import java.lang.String;
import java.lang.Boolean;
import java.util.Map;
import java.util.LinkedHashMap;
/**
* Generated
*/
@SuppressWarnings(value = "unchecked")
public class CredentialsRequestConditionFluentImpl> extends BaseFluent implements CredentialsRequestConditionFluent{
public CredentialsRequestConditionFluentImpl() {
}
public CredentialsRequestConditionFluentImpl(CredentialsRequestCondition instance) {
if (instance != null) {
this.withLastProbeTime(instance.getLastProbeTime());
this.withLastTransitionTime(instance.getLastTransitionTime());
this.withMessage(instance.getMessage());
this.withReason(instance.getReason());
this.withStatus(instance.getStatus());
this.withType(instance.getType());
this.withAdditionalProperties(instance.getAdditionalProperties());
}
}
private String lastProbeTime;
private String lastTransitionTime;
private String message;
private String reason;
private String status;
private String type;
private Map additionalProperties;
public String getLastProbeTime() {
return this.lastProbeTime;
}
public A withLastProbeTime(String lastProbeTime) {
this.lastProbeTime=lastProbeTime; return (A) this;
}
public Boolean hasLastProbeTime() {
return this.lastProbeTime != null;
}
public String getLastTransitionTime() {
return this.lastTransitionTime;
}
public A withLastTransitionTime(String lastTransitionTime) {
this.lastTransitionTime=lastTransitionTime; return (A) this;
}
public Boolean hasLastTransitionTime() {
return this.lastTransitionTime != null;
}
public String getMessage() {
return this.message;
}
public A withMessage(String message) {
this.message=message; return (A) this;
}
public Boolean hasMessage() {
return this.message != null;
}
public String getReason() {
return this.reason;
}
public A withReason(String reason) {
this.reason=reason; return (A) this;
}
public Boolean hasReason() {
return this.reason != null;
}
public String getStatus() {
return this.status;
}
public A withStatus(String status) {
this.status=status; return (A) this;
}
public Boolean hasStatus() {
return this.status != null;
}
public String getType() {
return this.type;
}
public A withType(String type) {
this.type=type; return (A) this;
}
public Boolean hasType() {
return this.type != 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;
CredentialsRequestConditionFluentImpl that = (CredentialsRequestConditionFluentImpl) o;
if (!java.util.Objects.equals(lastProbeTime, that.lastProbeTime)) return false;
if (!java.util.Objects.equals(lastTransitionTime, that.lastTransitionTime)) return false;
if (!java.util.Objects.equals(message, that.message)) return false;
if (!java.util.Objects.equals(reason, that.reason)) return false;
if (!java.util.Objects.equals(status, that.status)) return false;
if (!java.util.Objects.equals(type, that.type)) return false;
if (!java.util.Objects.equals(additionalProperties, that.additionalProperties)) return false;
return true;
}
public int hashCode() {
return java.util.Objects.hash(lastProbeTime, lastTransitionTime, message, reason, status, type, additionalProperties, super.hashCode());
}
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (lastProbeTime != null) { sb.append("lastProbeTime:"); sb.append(lastProbeTime + ","); }
if (lastTransitionTime != null) { sb.append("lastTransitionTime:"); sb.append(lastTransitionTime + ","); }
if (message != null) { sb.append("message:"); sb.append(message + ","); }
if (reason != null) { sb.append("reason:"); sb.append(reason + ","); }
if (status != null) { sb.append("status:"); sb.append(status + ","); }
if (type != null) { sb.append("type:"); sb.append(type + ","); }
if (additionalProperties != null && !additionalProperties.isEmpty()) { sb.append("additionalProperties:"); sb.append(additionalProperties); }
sb.append("}");
return sb.toString();
}
}