Class AMPExpireAtCondition

    • Constructor Summary

      Constructors 
      Constructor Description
      AMPExpireAtCondition​(java.lang.String utcDateTime)
      Create new expire-at amp condition with defined value.
      AMPExpireAtCondition​(java.util.Date utcDateTime)
      Create new expire-at amp condition with value set as XEP-0082 formatted date.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()  
      java.lang.String getValue()  
      static boolean isSupported​(org.jivesoftware.smack.XMPPConnection connection)
      Check if server supports expire-at condition.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AMPExpireAtCondition

        public AMPExpireAtCondition​(java.util.Date utcDateTime)
        Create new expire-at amp condition with value set as XEP-0082 formatted date.
        Parameters:
        utcDateTime - Date instance of time that will be used as value parameter after formatting to XEP-0082 format. Can't be null.
      • AMPExpireAtCondition

        public AMPExpireAtCondition​(java.lang.String utcDateTime)
        Create new expire-at amp condition with defined value.
        Parameters:
        utcDateTime - UTC time string that will be used as value parameter. Should be formatted as XEP-0082 Date format. Can't be null.
    • Method Detail

      • isSupported

        public static boolean isSupported​(org.jivesoftware.smack.XMPPConnection connection)
                                   throws org.jivesoftware.smack.SmackException.NoResponseException,
                                          org.jivesoftware.smack.XMPPException.XMPPErrorException,
                                          org.jivesoftware.smack.SmackException.NotConnectedException,
                                          java.lang.InterruptedException
        Check if server supports expire-at condition.
        Parameters:
        connection - Smack connection instance
        Returns:
        true if expire-at condition is supported.
        Throws:
        org.jivesoftware.smack.XMPPException.XMPPErrorException - if there was an XMPP error returned.
        org.jivesoftware.smack.SmackException.NoResponseException - if there was no response from the remote entity.
        org.jivesoftware.smack.SmackException.NotConnectedException - if the XMPP connection is not connected.
        java.lang.InterruptedException - if the calling thread was interrupted.