Home | History | Annotate | Download | only in packet

Lines Matching defs:OFFLINE

34  * <li>Offline<br>
35 * Indicates that the message has been stored offline by the intended recipient's server. This
36 * event is triggered only if the intended recipient's server supports offline storage, has that
37 * support enabled, and the recipient is offline when the server receives the message for delivery.</li>
61 public static final String OFFLINE = "offline";
67 private boolean offline = false;
134 * when the receiver of the message is offline.
135 * When the message is a notification returns if the receiver of the message was offline.
137 * @return true if the sender is requesting to be notified when offline or when notifying
138 * that the receiver of the message is offline
141 return offline;
166 * "offline", "composing","delivered","displayed", "offline"
185 allEvents.add(MessageEvent.OFFLINE);
232 * when the receiver of the message is offline.
233 * When the message is a notification sets if the receiver of the message was offline.
235 * @param offline sets if the sender is requesting to be notified when offline or when
236 * notifying that the receiver of the message is offline
238 public void setOffline(boolean offline) {
239 this.offline = offline;
312 // Add the offline tag if the sender requests to be notified of offline events or if
313 // the target is offline
315 buf.append("<").append(MessageEvent.OFFLINE).append("/>");