All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.fabric8.kubernetes.api.model.NodeConditionFluent Maven / Gradle / Ivy

package io.fabric8.kubernetes.api.model;

import java.util.HashMap;
import java.util.Map;
import io.fabric8.common.Fluent;

public class NodeConditionFluent> implements Fluent{

    private String lastHeartbeatTime ;
    private String lastTransitionTime ;
    private String message ;
    private String reason ;
    private String status ;
    private String type ;
    private Map additionalProperties  = new HashMap();

    public String getLastHeartbeatTime(){
    return this.lastHeartbeatTime;
    }
    public T withLastHeartbeatTime(String lastHeartbeatTime){
    this.lastHeartbeatTime=lastHeartbeatTime; return (T) this;
    }
    public String getLastTransitionTime(){
    return this.lastTransitionTime;
    }
    public T withLastTransitionTime(String lastTransitionTime){
    this.lastTransitionTime=lastTransitionTime; 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 String getStatus(){
    return this.status;
    }
    public T withStatus(String status){
    this.status=status; return (T) this;
    }
    public String getType(){
    return this.type;
    }
    public T withType(String type){
    this.type=type; 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