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

  /external/smack/src/org/jivesoftware/smackx/provider/
DelayInfoProvider.java 19 import org.jivesoftware.smackx.packet.DelayInformation;
23 * This provider simply creates a {@link DelayInfo} decorator for the {@link DelayInformation} that
39 return new DelayInfo((DelayInformation)super.parseExtension(parser));
DelayInformationProvider.java 30 import org.jivesoftware.smackx.packet.DelayInformation;
34 * The DelayInformationProvider parses DelayInformation packets.
60 DelayInformation delayInformation = new DelayInformation(stamp);
61 delayInformation.setFrom(parser.getAttributeValue("", "from"));
66 * DelayInformation API specifies that null should be returned in that
70 delayInformation.setReason(reason);
72 return delayInformation;
  /external/smack/src/org/jivesoftware/smackx/packet/
DelayInfo.java 21 * A decorator for the {@link DelayInformation} class to transparently support
29 public class DelayInfo extends DelayInformation
32 DelayInformation wrappedInfo;
38 public DelayInfo(DelayInformation delay)
DelayInformation.java 31 * Represents timestamp information about data stored for later delivery. A DelayInformation will
41 public class DelayInformation implements PacketExtension {
65 public DelayInformation(Date stamp) {
  /external/smack/src/org/jivesoftware/smackx/pubsub/
Node.java 38 import org.jivesoftware.smackx.packet.DelayInformation;
405 DelayInformation delay = (DelayInformation)packet.getExtension("delay", "urn:xmpp:delay");
410 delay = (DelayInformation)packet.getExtension("x", "jabber:x:delay");

Completed in 162 milliseconds