java.lang.Object
org.jivesoftware.smackx.last_interaction.element.IdleElement
All Implemented Interfaces:
org.jivesoftware.smack.packet.Element, org.jivesoftware.smack.packet.ExtensionElement, org.jivesoftware.smack.packet.NamedElement, org.jivesoftware.smack.packet.XmlElement, org.jivesoftware.smack.packet.XmlLangElement

public class IdleElement extends Object implements org.jivesoftware.smack.packet.ExtensionElement
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final String
     
    static final String
     
    static final QName
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create a new IdleElement with the current date as date of last user interaction.
    Create a new IdleElement.
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    addToPresence(org.jivesoftware.smack.packet.Presence presence)
    Add an Idle element with current date to the presence.
    fromPresence(org.jivesoftware.smack.packet.Presence presence)
    Return the IdleElement from a presence.
    Return the value of last user interaction.
    org.jivesoftware.smack.util.XmlStringBuilder
    toXML(org.jivesoftware.smack.packet.XmlEnvironment enclosingNamespace)

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.jivesoftware.smack.packet.Element

    toXML, toXML

    Methods inherited from interface org.jivesoftware.smack.packet.XmlElement

    getLanguage, getQName
  • Field Details

  • Constructor Details

    • IdleElement

      public IdleElement()
      Create a new IdleElement with the current date as date of last user interaction.
    • IdleElement

      public IdleElement(Date since)
      Create a new IdleElement.
      Parameters:
      since - date of last user interaction
  • Method Details

    • getSince

      public Date getSince()
      Return the value of last user interaction.
      Returns:
      date of last interaction
    • addToPresence

      public static void addToPresence(org.jivesoftware.smack.packet.Presence presence)
      Add an Idle element with current date to the presence.
      Parameters:
      presence - presence
    • fromPresence

      public static IdleElement fromPresence(org.jivesoftware.smack.packet.Presence presence)
      Return the IdleElement from a presence. Returns null, if no IdleElement found.
      Parameters:
      presence - presence
      Returns:
      idleElement from presence or null
    • getNamespace

      public String getNamespace()
      Specified by:
      getNamespace in interface org.jivesoftware.smack.packet.XmlElement
    • getElementName

      public String getElementName()
      Specified by:
      getElementName in interface org.jivesoftware.smack.packet.NamedElement
    • toXML

      public org.jivesoftware.smack.util.XmlStringBuilder toXML(org.jivesoftware.smack.packet.XmlEnvironment enclosingNamespace)
      Specified by:
      toXML in interface org.jivesoftware.smack.packet.Element