Searched defs:packetID (Results 1 - 8 of 8) sorted by relevance

/external/smack/src/org/jivesoftware/smack/filter/
H A DPacketIDFilter.java32 private String packetID; field in class:PacketIDFilter
37 * @param packetID the packet ID to filter for.
39 public PacketIDFilter(String packetID) { argument
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/
H A DDefaultMessageEventRequestListener.java34 public void deliveredNotificationRequested(String from, String packetID, argument
38 messageEventManager.sendDeliveredNotification(from, packetID);
41 public void displayedNotificationRequested(String from, String packetID, argument
46 public void composingNotificationRequested(String from, String packetID, argument
51 public void offlineNotificationRequested(String from, String packetID, argument
H A DMessageEventNotificationListener.java37 * @param packetID the id of the message that was sent.
39 public void deliveredNotification(String from, String packetID); argument
45 * @param packetID the id of the message that was sent.
47 public void displayedNotification(String from, String packetID); argument
54 * @param packetID the id of the message that was sent.
56 public void composingNotification(String from, String packetID); argument
62 * @param packetID the id of the message that was sent.
64 public void offlineNotification(String from, String packetID); argument
71 * @param packetID the id of the message that was sent.
73 public void cancelledNotification(String from, String packetID); argument
[all...]
H A DMessageEventRequestListener.java49 * @param packetID the id of the message that was sent.
52 public void deliveredNotificationRequested(String from, String packetID, argument
59 * @param packetID the id of the message that was sent.
62 public void displayedNotificationRequested(String from, String packetID, argument
70 * @param packetID the id of the message that was sent.
73 public void composingNotificationRequested(String from, String packetID, argument
80 * @param packetID the id of the message that was sent.
83 public void offlineNotificationRequested(String from, String packetID, argument
H A DMessageEventManager.java144 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) { argument
240 messageEvent.setPacketID(packetID);
250 * @param packetID the id of the message to send.
252 public void sendDisplayedNotification(String to, String packetID) { argument
258 messageEvent.setPacketID(packetID);
142 fireMessageEventRequestListeners( String from, String packetID, String methodName) argument
172 fireMessageEventNotificationListeners( String from, String packetID, String methodName) argument
270 sendComposingNotification(String to, String packetID) argument
288 sendCancelledNotification(String to, String packetID) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/filetransfer/
H A DStreamNegotiator.java78 public IQ createError(String from, String to, String packetID, XMPPError xmppError) { argument
79 IQ iq = FileTransferNegotiator.createIQ(packetID, to, from, IQ.Type.ERROR);
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMessageEvent.java73 private String packetID = null; field in class:MessageEvent
161 return packetID;
259 * @param packetID the message id that requested to be notified of the event.
261 public void setPacketID(String packetID) { argument
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/
H A DPacket.java60 * Constant used as packetID to indicate that a packet has no id. To indicate that a packet
107 private String packetID = null; field in class:Packet
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) { argument
156 this.packetID
[all...]

Completed in 106 milliseconds