View Javadoc
1   // $ANTLR 2.7.7 (20060906): "TriggerSpecification.g" -> "AntlrTriggerSpecificationParser.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.trigger;
25  
26  import java.util.ArrayList;
27  import java.util.List;
28  
29  import org.apache.directory.api.ldap.model.name.Dn;
30  import org.apache.directory.api.ldap.model.schema.NormalizerMappingResolver;
31  import org.apache.directory.api.ldap.trigger.StoredProcedureOption;
32  import org.apache.directory.api.ldap.trigger.StoredProcedureParameter;
33  import org.apache.directory.api.ldap.trigger.TriggerSpecification.SPSpec;
34  import org.apache.directory.api.ldap.model.message.SearchScope;
35  
36  import org.slf4j.Logger;
37  import org.slf4j.LoggerFactory;
38  
39  
40  public interface AntlrTriggerSpecificationParserTokenTypes {
41  	int EOF = 1;
42  	int NULL_TREE_LOOKAHEAD = 3;
43  	int SP = 4;
44  	int ID_AFTER = 5;
45  	int ID_modify = 6;
46  	int OPEN_PARAN = 7;
47  	int CLOSE_PARAN = 8;
48  	int SEMI = 9;
49  	int ID_add = 10;
50  	int ID_delete = 11;
51  	int ID_modifyDN = 12;
52  	int DOT = 13;
53  	int ID_modifyDNRename = 14;
54  	int ID_modifyDNExport = 15;
55  	int ID_modifyDNImport = 16;
56  	int ID_CALL = 17;
57  	int SEP = 18;
58  	int ID_object = 19;
59  	int ID_modification = 20;
60  	int ID_oldEntry = 21;
61  	int ID_newEntry = 22;
62  	int ID_entry = 23;
63  	int ID_attributes = 24;
64  	int ID_name = 25;
65  	int ID_deletedEntry = 26;
66  	int ID_newrdn = 27;
67  	int ID_deleteoldrdn = 28;
68  	int ID_newSuperior = 29;
69  	int ID_oldRDN = 30;
70  	int ID_oldSuperiorDN = 31;
71  	int ID_newDN = 32;
72  	int ID_operationPrincipal = 33;
73  	int ID_ldapContext = 34;
74  	int OPEN_CURLY = 35;
75  	int CLOSE_CURLY = 36;
76  	int ID_languageScheme = 37;
77  	int UTF8String = 38;
78  	int ID_searchContext = 39;
79  	int ID_search_scope = 40;
80  	int ID_scope_base = 41;
81  	int ID_scope_one = 42;
82  	int ID_scope_subtree = 43;
83  	int SAFEUTF8CHAR = 44;
84  	int COMMENT = 45;
85  	int IDENTIFIER = 46;
86  	int ALPHA = 47;
87  }