KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > freecs > interfaces > IGroupState


1 /**
2  * Copyright (C) 2003 Manfred Andres
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17  */

18 package freecs.interfaces;
19 /**
20  * Groupstates which may be set and change the behavior of this group
21  */

22 public abstract interface IGroupState {
23     public static final int ENTRANCE = 1;
24     public static final int OPEN = 2;
25     public static final int LOCKPROTECTED = 4;
26     public static final int MODERATED = 8;
27     public static final int AUTO_SU_FIRST = 16;
28     public static final int ALLOW_SU = 32;
29     public static final int SND_PRF_USER = 64;
30     public static final int SND_PRF_VIP = 128;
31     public static final int SND_PRF_MODERATOR = 256;
32     public static final int SND_PRF_GOD = 512;
33     public static final int SND_PRF_GUEST = 1024;
34     public static final int NO_SU_FIRST = 2048;
35     public static final int DEACTIVATE_HITDICE = 4096;
36     
37 }
Popular Tags