diff options
Diffstat (limited to 'src/main/java/com/p4square/grow/backend/NotificationService.java')
-rw-r--r-- | src/main/java/com/p4square/grow/backend/NotificationService.java | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/java/com/p4square/grow/backend/NotificationService.java b/src/main/java/com/p4square/grow/backend/NotificationService.java new file mode 100644 index 0000000..1d87a70 --- /dev/null +++ b/src/main/java/com/p4square/grow/backend/NotificationService.java @@ -0,0 +1,15 @@ +package com.p4square.grow.backend; + +/** + * An implementation of NotificationService sends notifications. + */ +public interface NotificationService { + + /** + * Send a notification from the GROW website to the notification address. + * + * @param message The notification to deliever. + */ + void sendNotification(final String message); + +} |