package com.kendelong.util.circuitbreaker; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Use this annotation on any method that should have a Circuit Breaker on it * * @author kdelong */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface CircuitBreakable { }