dnet-core/dnet-information-service/src/main/java/eu/dnetlib/enabling/is/sn/NotificationDetector.java

18 lines
330 B
Java

package eu.dnetlib.enabling.is.sn;
/**
* Implementors of this interface are able to detect events which will trigger notifications.
* @author marko
*
*/
public interface NotificationDetector {
/**
* injection point for NotificationSender.
*
* @param sender sender
*/
void setSender(NotificationSender sender);
}