12 lines
297 B
Java
12 lines
297 B
Java
package factorymethod;
|
|
|
|
/** Creator - declares the factory method */
|
|
public abstract class NotificationService {
|
|
protected abstract Notification createNotification();
|
|
|
|
public void notifyUser(String message) {
|
|
Notification n = createNotification();
|
|
n.send(message);
|
|
}
|
|
}
|