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
024package org.apache.directory.api.ldap.model.subtree;
025
026import org.apache.directory.api.i18n.I18n;
027import org.apache.directory.api.ldap.model.name.Dn;
028import org.apache.directory.api.ldap.model.filter.ExprNode;
029import org.apache.directory.api.ldap.model.filter.LeafNode;
030import org.apache.directory.api.ldap.model.filter.BranchNode;
031import org.apache.directory.api.ldap.model.filter.AndNode;
032import org.apache.directory.api.ldap.model.filter.OrNode;
033import org.apache.directory.api.ldap.model.filter.NotNode;
034import org.apache.directory.api.ldap.model.filter.EqualityNode;
035import org.apache.directory.api.ldap.model.filter.FilterParser;
036import org.apache.directory.api.util.ComponentsMonitor;
037import org.apache.directory.api.util.OptionalComponentsMonitor;
038import org.apache.directory.api.ldap.model.schema.SchemaManager;
039
040import org.slf4j.Logger;
041import org.slf4j.LoggerFactory;
042
043public interface AntlrSubtreeSpecificationCheckerTokenTypes {
044        int EOF = 1;
045        int NULL_TREE_LOOKAHEAD = 3;
046        int LITERAL_end = 4;
047        int OPEN_CURLY = 5;
048        int SP = 6;
049        int SEP = 7;
050        int CLOSE_CURLY = 8;
051        int ID_base = 9;
052        int ID_specificExclusions = 10;
053        int ID_chopBefore = 11;
054        int COLON = 12;
055        int ID_chopAfter = 13;
056        int ID_minimum = 14;
057        int ID_maximum = 15;
058        int ID_specificationFilter = 16;
059        int FILTER = 17;
060        int SAFEUTF8STRING = 18;
061        int INTEGER = 19;
062        int DESCR = 20;
063        int NUMERICOID = 21;
064        int ID_item = 22;
065        int ID_and = 23;
066        int ID_or = 24;
067        int ID_not = 25;
068        int INTEGER_OR_NUMERICOID = 26;
069        int DOT = 27;
070        int DIGIT = 28;
071        int LDIGIT = 29;
072        int ALPHA = 30;
073        int SAFEUTF8CHAR = 31;
074        int FILTER_VALUE = 32;
075}