9 lines
214 B
Java
9 lines
214 B
Java
package notificationSendingStrategies;
|
|
|
|
public class FastSendNotificationStrategy implements SendNotificationStrategy {
|
|
@Override
|
|
public String makeContent(String message) {
|
|
return message;
|
|
}
|
|
}
|