12 lines
286 B
Java
12 lines
286 B
Java
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);
|
|
}
|
|
}
|