14 lines
346 B
Java
14 lines
346 B
Java
package factorymethod;
|
|
|
|
public class PushNotification implements Notification {
|
|
|
|
@Override
|
|
public void send(String recipient, String message) {
|
|
// In production: use Firebase FCM
|
|
System.out.printf(" [PUSH] To: %s | Alert: %s%n", recipient, message);
|
|
}
|
|
|
|
@Override
|
|
public String getType() { return "PUSH"; }
|
|
}
|