1 25 26 package org.snipsnap.notification.jabber; 27 28 import org.snipsnap.notification.Notifier; 29 30 35 36 public class JabberNotifier implements Notifier { 37 private JabberBot bot; 38 private String user; 39 40 public JabberNotifier(String user) { 41 this.user = user; 42 bot = JabberBot.getInstance(); 43 } 44 45 public void notify(String message) { 46 bot.send(user, message); 47 } 48 } 49 | Popular Tags |