1 5 package org.exoplatform.services.communication.sms.model; 6 7 11 public interface Recipient { 12 13 public Integer getId(); 14 15 public String getTo(); 16 17 public Recipient setTo(String to); 18 19 public MessageStatus getStatus(); 20 21 public Recipient setStatus(MessageStatus status); 22 23 public String getError(); 24 25 public Recipient setError(String error); 26 27 } 28 29 | Popular Tags |