KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > mondrian > olap > Access


1 /*
2 // $Id: //open/mondrian/src/main/mondrian/olap/Access.java#7 $
3 // This software is subject to the terms of the Common Public License
4 // Agreement, available at the following URL:
5 // http://www.opensource.org/licenses/cpl.html.
6 // Copyright (C) 2003-2006 Julian Hyde
7 // All Rights Reserved.
8 // You must accept the terms of that agreement to use this software.
9 //
10 // jhyde, Feb 21, 2003
11 */

12 package mondrian.olap;
13
14 /**
15  * <code>Access</code> enumerates the allowable access rights.
16  *
17  * @author jhyde
18  * @since Feb 21, 2003
19  * @version $Id: //open/mondrian/src/main/mondrian/olap/Access.java#7 $
20  */

21 public enum Access {
22     /** No access to an object. */
23     NONE,
24     /** Custom access to an object (described by other parameters). */
25     CUSTOM,
26     /** Access to all shared dimensions (applies to schema grant). */
27     ALL_DIMENSIONS,
28     /** All access to an object. */
29     ALL;
30 }
31
32 // End Access.java
Popular Tags