KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portlet > forums > model > AuthType


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portlet.forums.model;
10
11 /**
12  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
13  * @version $Revision: 1.1 $
14  */

15 public class AuthType
16 {
17    /** DOCUMENT_ME */
18    public static final int VIEW = 0;
19
20    /** DOCUMENT_ME */
21    public static final int READ = 1;
22
23    /** DOCUMENT_ME */
24    public static final int POST = 2;
25
26    /** DOCUMENT_ME */
27    public static final int REPLY = 3;
28
29    /** DOCUMENT_ME */
30    public static final int EDIT = 4;
31
32    /** DOCUMENT_ME */
33    public static final int DELETE = 5;
34
35    /** DOCUMENT_ME */
36    public static final int ANNOUNCE = 6;
37
38    /** DOCUMENT_ME */
39    public static final int STICKY = 7;
40
41    /** DOCUMENT_ME */
42    public static final int POLL = 8;
43
44    /** DOCUMENT_ME */
45    public static final int VOTE = 9;
46
47    /** DOCUMENT_ME */
48    public static final int ATTACH = 10;
49 }
50
Popular Tags