package factorymethod; /** Creator - declares the factory method */ public abstract class NotificationService { protected abstract Notification createNotification(); public void notifyUser(String message) { Notification n = createNotification(); n.send(message); } }