001    // $ANTLR 2.7.7 (20060906): "TriggerSpecification.g" -> "AntlrTriggerSpecificationParser.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.trigger;
025    
026    import java.util.ArrayList;
027    import java.util.List;
028    
029    import org.apache.directory.api.ldap.model.name.Dn;
030    import org.apache.directory.api.ldap.model.schema.NormalizerMappingResolver;
031    import org.apache.directory.api.ldap.trigger.StoredProcedureOption;
032    import org.apache.directory.api.ldap.trigger.StoredProcedureParameter;
033    import org.apache.directory.api.ldap.trigger.TriggerSpecification.SPSpec;
034    import org.apache.directory.api.ldap.model.message.SearchScope;
035    
036    import org.slf4j.Logger;
037    import org.slf4j.LoggerFactory;
038    
039    
040    public interface AntlrTriggerSpecificationParserTokenTypes {
041            int EOF = 1;
042            int NULL_TREE_LOOKAHEAD = 3;
043            int SP = 4;
044            int ID_AFTER = 5;
045            int ID_modify = 6;
046            int OPEN_PARAN = 7;
047            int CLOSE_PARAN = 8;
048            int SEMI = 9;
049            int ID_add = 10;
050            int ID_delete = 11;
051            int ID_modifyDN = 12;
052            int DOT = 13;
053            int ID_modifyDNRename = 14;
054            int ID_modifyDNExport = 15;
055            int ID_modifyDNImport = 16;
056            int ID_CALL = 17;
057            int SEP = 18;
058            int ID_object = 19;
059            int ID_modification = 20;
060            int ID_oldEntry = 21;
061            int ID_newEntry = 22;
062            int ID_entry = 23;
063            int ID_attributes = 24;
064            int ID_name = 25;
065            int ID_deletedEntry = 26;
066            int ID_newrdn = 27;
067            int ID_deleteoldrdn = 28;
068            int ID_newSuperior = 29;
069            int ID_oldRDN = 30;
070            int ID_oldSuperiorDN = 31;
071            int ID_newDN = 32;
072            int ID_operationPrincipal = 33;
073            int ID_ldapContext = 34;
074            int OPEN_CURLY = 35;
075            int CLOSE_CURLY = 36;
076            int ID_languageScheme = 37;
077            int UTF8String = 38;
078            int ID_searchContext = 39;
079            int ID_search_scope = 40;
080            int ID_scope_base = 41;
081            int ID_scope_one = 42;
082            int ID_scope_subtree = 43;
083            int SAFEUTF8CHAR = 44;
084            int COMMENT = 45;
085            int IDENTIFIER = 46;
086            int ALPHA = 47;
087    }