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

io.automatiko.addons.fault.tolerance.CircuitBrakerDTO Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
package io.automatiko.addons.fault.tolerance;

public class CircuitBrakerDTO {

    private String name;

    private long count;

    public CircuitBrakerDTO() {

    }

    public CircuitBrakerDTO(String name, long count) {
        this.name = name;
        this.count = count;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public long getCount() {
        return count;
    }

    public void setCount(long count) {
        this.count = count;
    }

    @Override
    public String toString() {
        return "CircuitBrakerInfo [name=" + name + ", count=" + count + "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy