12 lines
292 B
Java
12 lines
292 B
Java
package factorymethod;
|
|
|
|
public class EmailService extends NotificationService {
|
|
private final String email;
|
|
public EmailService(String email) { this.email = email; }
|
|
|
|
@Override
|
|
protected Notification createNotification() {
|
|
return new EmailNotification(email);
|
|
}
|
|
}
|