/[projects]/miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreaker.java
ViewVC logotype

Contents of /miscJava/CircuitBreaker/src/main/java/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreaker.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 467 - (show annotations) (download)
Thu Oct 22 06:01:35 2009 UTC (14 years, 7 months ago) by torben
Original Path: CircuitBreaker/src/dk/thoerup/circuitbreaker/jmx/JmxCircuitBreaker.java
File size: 846 byte(s)
Rename package
1 package dk.thoerup.circuitbreaker.jmx;
2
3 import dk.thoerup.circuitbreaker.CircuitBreaker;
4
5 public class JmxCircuitBreaker implements JmxCircuitBreakerMBean {
6
7 private CircuitBreaker cb;
8
9 public JmxCircuitBreaker(CircuitBreaker cb) {
10 this.cb = cb;
11 }
12
13 public String getName() {
14 return cb.getName();
15 }
16
17 public String getStateName() {
18 return cb.getStateName();
19 }
20
21 public int getThreshold() {
22 return cb.getThreshold();
23 }
24
25 public int getTimeout() {
26 return cb.getTimeout();
27 }
28
29 public int getFailureCount() {
30 return cb.getFailureCount();
31 }
32
33 public long getElapsed() {
34 return cb.getElapsed();
35 }
36
37 public String getNotifierName() {
38 return cb.getNotifierName();
39 }
40
41 public void reset() {
42 cb.reset();
43
44 }
45
46 public void tripBreaker() {
47 cb.tripBreaker();
48 }
49
50 }

  ViewVC Help
Powered by ViewVC 1.1.20