KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > acl > ACLInfo


1 //
2
// ____.
3
// __/\ ______| |__/\. _______
4
// __ .____| | \ | +----+ \
5
// _______| /--| | | - \ _ | : - \_________
6
// \\______: :---| : : | : | \________>
7
// |__\---\_____________:______: :____|____:_____\
8
// /_____|
9
//
10
// . . . i n j a h i a w e t r u s t . . .
11
//
12

13 package org.jahia.services.acl;
14
15
16 /**
17  * This interface is used to share
18  *
19  * @author Fulco Houkes
20  * @author MAP
21  * @version 1.1
22  */

23 public interface ACLInfo {
24
25     /** User entry type constant */
26     public static final int USER_TYPE_ENTRY = 1;
27
28     /** group entry type constant */
29     public static final int GROUP_TYPE_ENTRY = 2;
30
31     /** IP entry type constant */
32     public static final int IP_TYPE_ENTRY = 3;
33
34     /** Inheritance different states on the DB acl table ("jahia_acl") field */
35     public static final int INHERITANCE = 0;
36     public static final int NO_INHERITANCE = 1;
37 }
38
39
Popular Tags