/[projects]/miscJava/CircuitBreaker/src/test/java/dk/thoerup/circuitbreaker/SucceedingInvocation.java
ViewVC logotype

Annotation of /miscJava/CircuitBreaker/src/test/java/dk/thoerup/circuitbreaker/SucceedingInvocation.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 463 - (hide annotations) (download)
Wed Oct 21 09:03:49 2009 UTC (14 years, 7 months ago) by torben
Original Path: CircuitBreaker/test/dk/thoerup/circuitbreaker/SucceedingInvocation.java
File size: 231 byte(s)
More testing
1 torben 463 package dk.thoerup.circuitbreaker;
2    
3     import dk.thoerup.curcuitbreaker.CircuitInvocation;
4    
5     public class SucceedingInvocation implements CircuitInvocation {
6    
7     public Object proceed() throws Exception {
8     return "OK";
9     }
10    
11     }

  ViewVC Help
Powered by ViewVC 1.1.20