package dk.thoerup.curcuitbreaker.notification; public interface Notifier { public enum Event { BreakerTripped, BreakerAttemptReset, BreakerReset } public void sendNotification(String breakerName, Event evnt); }