001 // $ANTLR 2.7.7 (20060906): "SubtreeSpecificationChecker.g" -> "AntlrSubtreeSpecificationChecker.java"$
002
003 /*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements. See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership. The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License. You may obtain a copy of the License at
011 *
012 * http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied. See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 *
021 */
022
023
024 package org.apache.directory.api.ldap.model.subtree;
025
026 import org.apache.directory.api.ldap.model.name.Dn;
027 import org.apache.directory.api.ldap.model.filter.ExprNode;
028 import org.apache.directory.api.ldap.model.filter.LeafNode;
029 import org.apache.directory.api.ldap.model.filter.BranchNode;
030 import org.apache.directory.api.ldap.model.filter.AndNode;
031 import org.apache.directory.api.ldap.model.filter.OrNode;
032 import org.apache.directory.api.ldap.model.filter.NotNode;
033 import org.apache.directory.api.ldap.model.filter.EqualityNode;
034 import org.apache.directory.api.ldap.model.filter.FilterParser;
035 import org.apache.directory.api.util.ComponentsMonitor;
036 import org.apache.directory.api.util.OptionalComponentsMonitor;
037 import org.apache.directory.api.ldap.model.schema.SchemaManager;
038
039 import org.slf4j.Logger;
040 import org.slf4j.LoggerFactory;
041
042 public interface AntlrSubtreeSpecificationCheckerTokenTypes {
043 int EOF = 1;
044 int NULL_TREE_LOOKAHEAD = 3;
045 int LITERAL_end = 4;
046 int OPEN_CURLY = 5;
047 int SP = 6;
048 int SEP = 7;
049 int CLOSE_CURLY = 8;
050 int ID_base = 9;
051 int ID_specificExclusions = 10;
052 int ID_chopBefore = 11;
053 int COLON = 12;
054 int ID_chopAfter = 13;
055 int ID_minimum = 14;
056 int ID_maximum = 15;
057 int ID_specificationFilter = 16;
058 int FILTER = 17;
059 int SAFEUTF8STRING = 18;
060 int INTEGER = 19;
061 int DESCR = 20;
062 int NUMERICOID = 21;
063 int ID_item = 22;
064 int ID_and = 23;
065 int ID_or = 24;
066 int ID_not = 25;
067 int INTEGER_OR_NUMERICOID = 26;
068 int DOT = 27;
069 int DIGIT = 28;
070 int LDIGIT = 29;
071 int ALPHA = 30;
072 int SAFEUTF8CHAR = 31;
073 int FILTER_VALUE = 32;
074 }