1 19 20 package com.sslexplorer.notification; 21 22 public interface MessageSink { 23 public void start(Notifier notifier) throws Exception ; 24 public void stop() throws Exception ; 25 public boolean send(Message message) throws Exception ; 26 public String getName(); 27 public String getShortNameKey(); 28 public String getDescriptionKey(); 29 public String getBundle(); 30 } 31 | Popular Tags |