package dk.thoerup.curcuitbreaker.notification; public class NullNotifier implements Notifier { public void sendNotification(String breakerName, Event evnt) { //Do Nothing } @Override public String toString() { return "NullNotifier"; } }