org.netbeans.lib.collab
Class MessageStatus

java.lang.Object
  extended byorg.netbeans.lib.collab.MessageStatus

public class MessageStatus
extends java.lang.Object

This class defines message delivery status constants.

Since:
version 0.1

Field Summary
static int DELAYED
          Message was not delivered.
static int DELIVERED
          message has been delivered successfully
static int EMAILED
          message has been emailed to an email address, as the receipient is currently offline.
static int FAILED
          delivery has failed because the user was not online.
static int FORWARDED
           
static int GATEWAYED
          message was delivered to a gateway to a foreign realtime messaging environment.
static int READ
          message has been read by recipient
static int RECEIVED
           
static int REFUSED
          Message was not delivered.
static int RELAYED
          message has been forwarded to another domain within the same messaging infrastructure (i.e. protocol).
static int REPLIED
          recipient has replied
static int TYPING_OFF
          recipient has stopped typing
static int TYPING_ON
          recipient has started typing
 
Constructor Summary
MessageStatus()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DELIVERED

public static final int DELIVERED
message has been delivered successfully

See Also:
Constant Field Values

RECEIVED

public static final int RECEIVED
See Also:
Constant Field Values

RELAYED

public static final int RELAYED
message has been forwarded to another domain within the same messaging infrastructure (i.e. protocol).

See Also:
Constant Field Values

FORWARDED

public static final int FORWARDED
See Also:
Constant Field Values

GATEWAYED

public static final int GATEWAYED
message was delivered to a gateway to a foreign realtime messaging environment.

See Also:
Constant Field Values

READ

public static final int READ
message has been read by recipient

See Also:
Constant Field Values

REPLIED

public static final int REPLIED
recipient has replied

See Also:
Constant Field Values

FAILED

public static final int FAILED
delivery has failed because the user was not online. The message was discarded by the server.

See Also:
Constant Field Values

DELAYED

public static final int DELAYED
Message was not delivered. Delivery was delayed because the recipient is unavailable. message was stored on the server side.

See Also:
Constant Field Values

REFUSED

public static final int REFUSED
Message was not delivered. message was denied access to recipient

See Also:
Constant Field Values

EMAILED

public static final int EMAILED
message has been emailed to an email address, as the receipient is currently offline.

See Also:
Constant Field Values

TYPING_ON

public static final int TYPING_ON
recipient has started typing

See Also:
Constant Field Values

TYPING_OFF

public static final int TYPING_OFF
recipient has stopped typing

See Also:
Constant Field Values
Constructor Detail

MessageStatus

public MessageStatus()