/[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 2448 - (hide annotations) (download)
Fri Mar 20 08:52:49 2015 UTC (9 years, 2 months ago) by torben
Original Path: miscJava/CircuitBreaker/test/dk/thoerup/circuitbreaker/SucceedingInvocation.java
File size: 231 byte(s)
move java components to java folder
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