1 /*
2 * (C) Copyright 1989-2011 Trend Micro, Inc.
3 * All Rights Reserved.
4 *
5 * This program is an unpublished copyrighted work which is proprietary
6 * to Trend Micro, Inc. and contains confidential information that is not
7 * to be reproduced or disclosed to any other person or entity without
8 * prior written consent from Trend Micro, Inc. in each and every instance.
9 *
10 * WARNING: Unauthorized reproduction of this program as well as
11 * unauthorized preparation of derivative works based upon the
12 * program or distribution of copies by sale, rental, lease or
13 * lending are violations of federal copyright laws and state trade
14 * secret laws, punishable by civil and criminal penalties.
15 */
16
17 package com.trendmicro.grid.acl.l0;
18
19 /**
20 * Enumerates all known query contexts.
21 *
22 * @author Juergen_Kellerer, 2011-04-14
23 * @version 1.0
24 */
25 public class KnownQueryContexts {
26
27 //!!! Do not remove this line !!!
28 //START-SNIPPET: KnownQueryContexts
29
30 /**
31 * Defines a context used to label hash queries.
32 */
33 public static final String CONTEXT_HASH_QUERY = "hash-query";
34
35 /**
36 * Defines a context used to label tag matching queries.
37 */
38 public static final String CONTEXT_TAG_MATCHING_QUERY = "tag-matching-query";
39
40
41 //END-SNIPPET: KnownQueryContexts
42 //!!! Do not remove this line !!!
43
44 private KnownQueryContexts() {
45 }
46 }