View Javadoc
1   /*
2    *  Licensed to the Apache Software Foundation (ASF) under one
3    *  or more contributor license agreements.  See the NOTICE file
4    *  distributed with this work for additional information
5    *  regarding copyright ownership.  The ASF licenses this file
6    *  to you under the Apache License, Version 2.0 (the
7    *  "License"); you may not use this file except in compliance
8    *  with the License.  You may obtain a copy of the License at
9    *  
10   *    http://www.apache.org/licenses/LICENSE-2.0
11   *  
12   *  Unless required by applicable law or agreed to in writing,
13   *  software distributed under the License is distributed on an
14   *  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   *  KIND, either express or implied.  See the License for the
16   *  specific language governing permissions and limitations
17   *  under the License. 
18   *  
19   */
20  
21  package org.apache.directory.api.ldap.trigger;
22  
23  
24  /**
25   * An enumeration that represents change inducing LDAP operations.
26   * 
27   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
28   */
29  public enum LdapOperation
30  {
31      /** The Modify operation */
32      MODIFY("Modify"),
33  
34      /** The Add operation */
35      ADD("Add"),
36  
37      /** The Delete operation */
38      DELETE("Delete"),
39  
40      /** The ModDN operation */
41      MODIFYDN("ModifyDN"),
42  
43      /** The Rename operation */
44      MODIFYDN_RENAME("ModifyDN.Rename"),
45  
46      /** The Export operation */
47      MODIFYDN_EXPORT("ModifyDN.Export"),
48  
49      /** The Import operation */
50      MODIFYDN_IMPORT("ModifyDN.Import");
51  
52      private final String name;
53  
54  
55      /**
56       * 
57       * Creates a new instance of LdapOperation.
58       *
59       * @param name
60       */
61      LdapOperation( String name )
62      {
63          this.name = name;
64      }
65  
66  
67      /**
68       * @return the name of this LDAP operation
69       */
70      public String getName()
71      {
72          return name;
73      }
74  
75  
76      /**
77       * {@inheritDoc}
78       */
79      @Override
80      public String toString()
81      {
82          return name;
83      }
84  }