HomeSort by relevance Sort by last modified time
    Searched refs:packetID (Results 1 - 9 of 9) sorted by null

  /external/smack/src/org/jivesoftware/smack/filter/
PacketIDFilter.java 32 private String packetID;
37 * @param packetID the packet ID to filter for.
39 public PacketIDFilter(String packetID) {
40 if (packetID == null) {
43 this.packetID = packetID;
47 return packetID.equals(packet.getPacketID());
51 return "PacketIDFilter by id: " + packetID;
  /external/smack/src/org/jivesoftware/smackx/
MessageEventNotificationListener.java 37 * @param packetID the id of the message that was sent.
39 public void deliveredNotification(String from, String packetID);
45 * @param packetID the id of the message that was sent.
47 public void displayedNotification(String from, String packetID);
54 * @param packetID the id of the message that was sent.
56 public void composingNotification(String from, String packetID);
62 * @param packetID the id of the message that was sent.
64 public void offlineNotification(String from, String packetID);
71 * @param packetID the id of the message that was sent.
73 public void cancelledNotification(String from, String packetID);
    [all...]
MessageEventRequestListener.java 49 * @param packetID the id of the message that was sent.
52 public void deliveredNotificationRequested(String from, String packetID,
59 * @param packetID the id of the message that was sent.
62 public void displayedNotificationRequested(String from, String packetID,
70 * @param packetID the id of the message that was sent.
73 public void composingNotificationRequested(String from, String packetID,
80 * @param packetID the id of the message that was sent.
83 public void offlineNotificationRequested(String from, String packetID,
DefaultMessageEventRequestListener.java 34 public void deliveredNotificationRequested(String from, String packetID,
38 messageEventManager.sendDeliveredNotification(from, packetID);
41 public void displayedNotificationRequested(String from, String packetID,
46 public void composingNotificationRequested(String from, String packetID,
51 public void offlineNotificationRequested(String from, String packetID,
MessageEventManager.java 144 String packetID,
158 method.invoke(listeners[i], new Object[] { from, packetID, this });
174 String packetID,
189 method.invoke(listeners[i], new Object[] { from, packetID });
232 * @param packetID the id of the message to send.
234 public void sendDeliveredNotification(String to, String packetID) {
240 messageEvent.setPacketID(packetID);
250 * @param packetID the id of the message to send.
252 public void sendDisplayedNotification(String to, String packetID) {
258 messageEvent.setPacketID(packetID);
    [all...]
PrivateDataManager.java 198 String packetID = privateDataGet.getPacketID();
199 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(packetID));
244 String packetID = privateDataSet.getPacketID();
245 PacketCollector collector = connection.createPacketCollector(new PacketIDFilter(packetID));
  /external/smack/src/org/jivesoftware/smackx/packet/
MessageEvent.java 73 private String packetID = null;
161 return packetID;
259 * @param packetID the message id that requested to be notified of the event.
261 public void setPacketID(String packetID) {
262 this.packetID = packetID;
272 return this.packetID == null;
310 // Note: Cancellation events don't specify any tag. They just send the packetID
  /external/smack/src/org/jivesoftware/smack/packet/
Packet.java 60 * Constant used as packetID to indicate that a packet has no id. To indicate that a packet
107 private String packetID = null;
120 packetID = p.getPacketID();
139 if (ID_NOT_AVAILABLE.equals(packetID)) {
143 if (packetID == null) {
144 packetID = nextID();
146 return packetID;
153 * @param packetID the unique ID for the packet.
155 public void setPacketID(String packetID) {
156 this.packetID = packetID
    [all...]
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
StreamNegotiator.java 78 public IQ createError(String from, String to, String packetID, XMPPError xmppError) {
79 IQ iq = FileTransferNegotiator.createIQ(packetID, to, from, IQ.Type.ERROR);

Completed in 565 milliseconds