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

com.aeontronix.enhancedmule.tools.fabric.FabricStatus Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha4
Show newest version
package com.aeontronix.enhancedmule.tools.fabric;

/**
 * Created by JacksonGenerator on 10/31/20.
 */

import com.fasterxml.jackson.annotation.JsonProperty;


public class FabricStatus {
    @JsonProperty("isReady")
    private Boolean isReady;
    @JsonProperty("isHealthy")
    private Boolean isHealthy;
    @JsonProperty("isSchedulable")
    private Boolean isSchedulable;

    public Boolean getReady() {
        return isReady;
    }

    public void setReady(Boolean ready) {
        isReady = ready;
    }

    public Boolean getHealthy() {
        return isHealthy;
    }

    public void setHealthy(Boolean healthy) {
        isHealthy = healthy;
    }

    public Boolean getSchedulable() {
        return isSchedulable;
    }

    public void setSchedulable(Boolean schedulable) {
        isSchedulable = schedulable;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy