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