View Javadoc
1   // $ANTLR 2.7.7 (20060906): "SubtreeSpecificationChecker.g" -> "AntlrSubtreeSpecificationChecker.java"$
2   
3   /*
4    *  Licensed to the Apache Software Foundation (ASF) under one
5    *  or more contributor license agreements.  See the NOTICE file
6    *  distributed with this work for additional information
7    *  regarding copyright ownership.  The ASF licenses this file
8    *  to you under the Apache License, Version 2.0 (the
9    *  "License"); you may not use this file except in compliance
10   *  with the License.  You may obtain a copy of the License at
11   *  
12   *    http://www.apache.org/licenses/LICENSE-2.0
13   *  
14   *  Unless required by applicable law or agreed to in writing,
15   *  software distributed under the License is distributed on an
16   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   *  KIND, either express or implied.  See the License for the
18   *  specific language governing permissions and limitations
19   *  under the License. 
20   *  
21   */
22  
23  
24  package org.apache.directory.api.ldap.model.subtree;
25  
26  import org.apache.directory.api.ldap.model.name.Dn;
27  import org.apache.directory.api.ldap.model.filter.ExprNode;
28  import org.apache.directory.api.ldap.model.filter.LeafNode;
29  import org.apache.directory.api.ldap.model.filter.BranchNode;
30  import org.apache.directory.api.ldap.model.filter.AndNode;
31  import org.apache.directory.api.ldap.model.filter.OrNode;
32  import org.apache.directory.api.ldap.model.filter.NotNode;
33  import org.apache.directory.api.ldap.model.filter.EqualityNode;
34  import org.apache.directory.api.ldap.model.filter.FilterParser;
35  import org.apache.directory.api.util.ComponentsMonitor;
36  import org.apache.directory.api.util.OptionalComponentsMonitor;
37  import org.apache.directory.api.ldap.model.schema.SchemaManager;
38  
39  import org.slf4j.Logger;
40  import org.slf4j.LoggerFactory;
41  
42  public interface AntlrSubtreeSpecificationCheckerTokenTypes {
43  	int EOF = 1;
44  	int NULL_TREE_LOOKAHEAD = 3;
45  	int LITERAL_end = 4;
46  	int OPEN_CURLY = 5;
47  	int SP = 6;
48  	int SEP = 7;
49  	int CLOSE_CURLY = 8;
50  	int ID_base = 9;
51  	int ID_specificExclusions = 10;
52  	int ID_chopBefore = 11;
53  	int COLON = 12;
54  	int ID_chopAfter = 13;
55  	int ID_minimum = 14;
56  	int ID_maximum = 15;
57  	int ID_specificationFilter = 16;
58  	int FILTER = 17;
59  	int SAFEUTF8STRING = 18;
60  	int INTEGER = 19;
61  	int DESCR = 20;
62  	int NUMERICOID = 21;
63  	int ID_item = 22;
64  	int ID_and = 23;
65  	int ID_or = 24;
66  	int ID_not = 25;
67  	int INTEGER_OR_NUMERICOID = 26;
68  	int DOT = 27;
69  	int DIGIT = 28;
70  	int LDIGIT = 29;
71  	int ALPHA = 30;
72  	int SAFEUTF8CHAR = 31;
73  	int FILTER_VALUE = 32;
74  }