10 lines
246 B
Java
10 lines
246 B
Java
package utils;
|
|
|
|
public class FastSendNotificationStrategy implements SendNotificationStrategy {
|
|
@Override
|
|
public NotificationState send(String message) {
|
|
System.out.println(message);
|
|
return NotificationState.SENT;
|
|
}
|
|
}
|