12 lines
289 B
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);
|
|
}
|
|
}
|