9 lines
188 B
Java
9 lines
188 B
Java
package factorymethod;
|
|
|
|
public class PushSender extends NotificationSender {
|
|
@Override
|
|
protected Notification createNotification() {
|
|
return new PushNotification();
|
|
}
|
|
}
|