package factorymethod; public class PushService extends NotificationService { private final String token; public PushService(String token) { this.token = token; } @Override protected Notification createNotification() { return new PushNotification(token); } }