org.xmpp.util.XMPPConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinder Show documentation
Show all versions of tinder Show documentation
Tinder is a Java based XMPP library, providing an implementation for XMPP stanzas and components. Tinders origins lie in code that's shared between Jive Software's Openfire and Whack implementations. The implementation that's provided in Tinder hasn't been written again from scratch. Instead, code has been moved from the original projects into Tinder, preserving al of the existing features and functionality. Most of the code that's now in Tinder is based on the org.xmpp package implementation that previously existed in Openfire and Whack. This is the code that defines classes such as Packet, JID, IQ, Component and their extensions. Additionally, some multi-purpose code (such as the DataForm and Result Set Management implementations have been moved to Tinder as well.
/**
* $RCSfile$
* $Revision: 10204 $
* $Date: 2008-04-12 00:44:25 +0200 (Sat, 12 Apr 2008) $
*
* Copyright (C) 2004-2008 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution, or a commercial license
* agreement with Jive.
*/
package org.xmpp.util;
/**
* Contains constant values representing various objects in Tinder.
*/
public class XMPPConstants {
/**
* The amount of milliseconds in one second.
*/
public static final long SECOND = 1000;
/**
* The amount of milliseconds in one minute.
*/
public static final long MINUTE = 60 * SECOND;
/**
* The amount of milliseconds in one .
*/
public static final long HOUR = 60 * MINUTE;
/**
* The amount of milliseconds in one .
*/
public static final long DAY = 24 * HOUR;
/**
* The amount of milliseconds in one .
*/
public static final long WEEK = 7 * DAY;
/**
* Date/time format for use by SimpleDateFormat. The format conforms to
* XEP-0082, which defines
* a unified date/time format for XMPP.
*/
public static final String XMPP_DATETIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'";
/**
* Date/time format for use by SimpleDateFormat. The format conforms to the format
* defined in XEP-0091,
* a specialized date format for historical XMPP usage.
*/
public static final String XMPP_DELAY_DATETIME_FORMAT = "yyyyMMdd'T'HH:mm:ss";
}