package utils; public class FastSendNotificationStrategy implements SendNotificationStrategy { @Override public NotificationState send(String message) { System.out.println(message); return NotificationState.SENT; } }