View Javadoc
1   // $ANTLR 2.7.7 (20060906): "subtree-specification.g" -> "AntlrSubtreeSpecificationParser.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 java.util.Set;
27  import java.util.Map;
28  import java.util.HashSet;
29  import java.util.List;
30  import java.util.ArrayList;
31  
32  import org.apache.directory.api.ldap.model.name.Dn;
33  import org.apache.directory.api.ldap.model.filter.ExprNode;
34  import org.apache.directory.api.ldap.model.filter.LeafNode;
35  import org.apache.directory.api.ldap.model.filter.BranchNode;
36  import org.apache.directory.api.ldap.model.filter.AndNode;
37  import org.apache.directory.api.ldap.model.filter.OrNode;
38  import org.apache.directory.api.ldap.model.filter.NotNode;
39  import org.apache.directory.api.ldap.model.filter.EqualityNode;
40  import org.apache.directory.api.ldap.model.filter.FilterParser;
41  import org.apache.directory.api.ldap.model.schema.ObjectClass;
42  import org.apache.directory.api.ldap.model.schema.SchemaManager;
43  import org.apache.directory.api.ldap.model.subtree.SubtreeSpecification;
44  import org.apache.directory.api.ldap.model.subtree.SubtreeSpecificationModifier;
45  import org.apache.directory.api.ldap.model.schema.NormalizerMappingResolver;
46  import org.apache.directory.api.ldap.model.schema.normalizers.OidNormalizer;
47  import org.apache.directory.api.util.ComponentsMonitor;
48  import org.apache.directory.api.util.OptionalComponentsMonitor;
49  import org.apache.directory.api.ldap.model.constants.SchemaConstants;
50  import org.apache.directory.api.ldap.model.entry.StringValue;
51  import org.apache.directory.api.ldap.model.exception.LdapException;
52  import org.apache.directory.api.ldap.model.schema.AttributeType;
53  
54  import org.slf4j.Logger;
55  import org.slf4j.LoggerFactory;
56  
57  public interface AntlrSubtreeSpecificationParserTokenTypes {
58  	int EOF = 1;
59  	int NULL_TREE_LOOKAHEAD = 3;
60  	int LITERAL_end = 4;
61  	int OPEN_CURLY = 5;
62  	int SP = 6;
63  	int SEP = 7;
64  	int CLOSE_CURLY = 8;
65  	int ID_base = 9;
66  	int ID_specificExclusions = 10;
67  	int ID_chopBefore = 11;
68  	int COLON = 12;
69  	int ID_chopAfter = 13;
70  	int ID_minimum = 14;
71  	int ID_maximum = 15;
72  	int ID_specificationFilter = 16;
73  	int FILTER = 17;
74  	int SAFEUTF8STRING = 18;
75  	int INTEGER = 19;
76  	int DESCR = 20;
77  	int NUMERICOID = 21;
78  	int ID_item = 22;
79  	int ID_and = 23;
80  	int ID_or = 24;
81  	int ID_not = 25;
82  	int INTEGER_OR_NUMERICOID = 26;
83  	int DOT = 27;
84  	int DIGIT = 28;
85  	int LDIGIT = 29;
86  	int ALPHA = 30;
87  	int SAFEUTF8CHAR = 31;
88  	int FILTER_VALUE = 32;
89  }