io.github.resilience4j.circuitbreaker.monitoring.endpoint.CircuitBreakerEndpointResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilience4j-spring-boot2 Show documentation
Show all versions of resilience4j-spring-boot2 Show documentation
Resilience4j is a lightweight, easy-to-use fault tolerance library designed for Java8 and functional programming
package io.github.resilience4j.circuitbreaker.monitoring.endpoint;
import java.util.List;
public class CircuitBreakerEndpointResponse {
private List circuitBreakers;
public CircuitBreakerEndpointResponse(){
}
public CircuitBreakerEndpointResponse(List circuitBreakers){
this.circuitBreakers = circuitBreakers;
}
public List getCircuitBreakers() {
return circuitBreakers;
}
public void setCircuitBreakers(List circuitBreakers) {
this.circuitBreakers = circuitBreakers;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy