1 package com.trendmicro.grid.acl.metadata;
2
3 import javax.xml.bind.annotation.XmlEnum;
4 import javax.xml.bind.annotation.XmlType;
5
6 /**
7 * Describes the level of access to a certain Meta element identified by it's key.
8 *
9 * @author Juergen_Kellerer, 2010-04-21
10 * @version 1.0
11 */
12 @XmlEnum
13 @XmlType(namespace = ProfilesDocument.NS)
14 public enum AccessLevel {
15 /**
16 * GRID internal only.
17 */
18 PRIVATE,
19 /**
20 * Available inside the office network.
21 */
22 PROTECTED,
23 /**
24 * Open to anyone.
25 */
26 PUBLIC
27 }