io.automatiko.addons.fault.tolerance.CircuitBrakerDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automatiko-fault-tolerance-addon Show documentation
Show all versions of automatiko-fault-tolerance-addon Show documentation
Fault Tolerance AddOn for Automatiko Engine
The 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 + "]";
}
}