1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 package de.bea.domingo;
24
25 /***
26 * Represents the access control list (ACL) of a database.
27 *
28 * @author <a href=mailto:kriede@users.sourceforge.net>Kurt Riede</a>
29 */
30 public final class DACL {
31
32 /*** No access to a database. */
33 public static final int LEVEL_NOACCESS = 0;
34
35 /*** Depositor access to a database. */
36 public static final int LEVEL_DEPOSITOR = 1;
37
38 /*** Read access to a database. */
39 public static final int LEVEL_READER = 2;
40
41 /*** Author access to a database. */
42 public static final int LEVEL_AUTHOR = 3;
43
44 /*** Editor access to a database. */
45 public static final int LEVEL_EDITOR = 4;
46
47 /*** Designer access to a database. */
48 public static final int LEVEL_DESIGNER = 5;
49
50 /*** Manager access to a database. */
51 public static final int LEVEL_MANAGER = 6;
52
53 /***
54 * Constructor.
55 */
56 private DACL() {
57 super();
58 }
59 }