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