/[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 467 - (hide annotations) (download)
Thu Oct 22 06:01:35 2009 UTC (14 years, 7 months ago) by torben
Original Path: CircuitBreaker/test/dk/thoerup/circuitbreaker/SucceedingInvocation.java
File size: 231 byte(s)
Rename package
1 torben 463 package dk.thoerup.circuitbreaker;
2    
3 torben 467 import dk.thoerup.circuitbreaker.CircuitInvocation;
4 torben 463
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