/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 2004 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.
*/
package org.jivesoftware.util;
/**
* Contains constant values representing various objects in Jive.
*/
public class JiveConstants {
public static final int USER = 3;
public static final int GROUP = 4;
public static final int SYSTEM = 17;
public static final int ROSTER = 18;
public static final int OFFLINE = 19;
public static final int WORKGROUP_AGENT = 20;
public static final int WORKGROUP_QUEUE = 21;
public static final int WORKGROUP_GROUP = 22;
public static final int MUC_ROOM = 23;
public static final long SECOND = 1000;
public static final long MINUTE = 60 * SECOND;
public static final long HOUR = 60 * MINUTE;
public static final long DAY = 24 * HOUR;
public static final long WEEK = 7 * DAY;
}
-
Matt Tucker authored
git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@42 b35dd754-fafc-0310-a699-88a17e54d16e
c7660169