KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > communication > sms > model > Recipient


1 /**
2  * Copyright 2001-2004 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  **/

5 package org.exoplatform.services.communication.sms.model;
6
7 /**
8  * @author Ove Ranheim (oranheim@yahoo.no)
9  * @since Jun 18, 2004 4:07:00 PM
10  */

11 public interface Recipient {
12
13     public Integer JavaDoc getId();
14
15     public String JavaDoc getTo();
16
17     public Recipient setTo(String JavaDoc to);
18
19     public MessageStatus getStatus();
20
21     public Recipient setStatus(MessageStatus status);
22
23     public String JavaDoc getError();
24
25     public Recipient setError(String JavaDoc error);
26
27 }
28
29
Popular Tags