Files
design-patterns/01-creational/factory-method/PushService.java

12 lines
289 B
Java

package factorymethod;
public class PushService extends NotificationService {
private final String token;
public PushService(String token) { this.token = token; }
@Override
protected Notification createNotification() {
return new PushNotification(token);
}
}