1 18 package sync4j.framework.notification; 19 20 21 27 public interface Sender { 28 29 30 32 40 public void sendMessage(int messageType, 41 String phoneNumber, 42 byte[] message, 43 String info) throws NotificationException; 44 45 53 public void sendMessages(int messageType, 54 String [] phoneNumbers, 55 byte[][] message, 56 String info) throws NotificationException; 57 58 59 70 public void sendMessages(int messageType, 71 String contentType, 72 String [] macs, 73 int[] authMethods, 74 String [] phoneNumbers, 75 byte[][] messages, 76 String info) throws NotificationException; 77 78 79 } | Popular Tags |