Project

General

Profile

1
package eu.dnetlib.enabling.is.sn;
2

    
3

    
4
/**
5
 * Implementors of this interface are able to detect events which will trigger notifications.
6
 * @author marko
7
 *
8
 */
9
public interface NotificationDetector {
10

    
11
	/**
12
	 * injection point for NotificationSender.
13
	 * 
14
	 * @param sender sender
15
	 */
16
	void setSender(NotificationSender sender);
17
}
(10-10/23)