summaryrefslogtreecommitdiff
path: root/src/main/java/com/p4square/grow/backend/NotificationService.java
blob: 1d87a701241bb935c086386c9fb1884922edd992 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);

}