10 lines
254 B
Java
10 lines
254 B
Java
package factorymethod;
|
|
|
|
// New Concrete Creator — knows to create a SlackNotification
|
|
public class SlackSender extends NotificationSender {
|
|
@Override
|
|
protected Notification createNotification() {
|
|
return new SlackNotification();
|
|
}
|
|
}
|