io.fabric8.kubernetes.api.model.base.StatusCauseFluent Maven / Gradle / Ivy
package io.fabric8.kubernetes.api.model.base;
import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;
public class StatusCauseFluent> implements Fluent{
private String field ;
private String message ;
private String reason ;
private Map additionalProperties = new HashMap();
public String getField(){
return this.field;
}
public T withField(String field){
this.field=field; return (T) this;
}
public String getMessage(){
return this.message;
}
public T withMessage(String message){
this.message=message; return (T) this;
}
public String getReason(){
return this.reason;
}
public T withReason(String reason){
this.reason=reason; return (T) this;
}
public Map getAdditionalProperties(){
return this.additionalProperties;
}
public T withAdditionalProperties(Map additionalProperties){
this.additionalProperties.clear();if (additionalProperties != null) {this.additionalProperties.putAll(additionalProperties);} return (T) this;
}
public T addToAdditionalProperties(String key, Object value){
if(key != null && value != null) {this.additionalProperties.put(key, value);} return (T)this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy