HomeSort by relevance Sort by last modified time
    Searched defs:packetID (Results 1 - 4 of 4) 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/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/smackx/
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/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...]

Completed in 77 milliseconds