blob: c6166ae0851a9cd88a1e296b786f3bc29a8553a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package com.p4square.grow.provider;
import com.p4square.grow.backend.NotificationService;
/**
* Indicates that the class can provide a NotificationService instance.
*/
public interface ProvidesNotificationService {
NotificationService getNotificationService();
}
|