9 lines
186 B
Java
9 lines
186 B
Java
package factorymethod;
|
|
|
|
public class SmsSender extends NotificationSender {
|
|
@Override
|
|
protected Notification createNotification() {
|
|
return new SmsNotification();
|
|
}
|
|
}
|