View Javadoc
1   package net.avcompris.commons3.notifier;
2   
3   import java.io.IOException;
4   
5   import net.avcompris.commons3.api.User;
6   import net.avcompris.commons3.notifier.api.Notification;
7   
8   public interface Notifier {
9   
10  	void notify(String correlationId, User user, Notification notification) throws IOException;
11  }