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  package org.apache.directory.server.core.schema;
21  
22  
23  import org.apache.directory.server.core.entry.ServerEntry;
24  import org.apache.directory.server.schema.registries.Registries;
25  import org.apache.directory.shared.ldap.name.LdapDN;
26  import org.apache.directory.shared.ldap.name.Rdn;
27  import org.apache.directory.shared.ldap.schema.MatchingRuleUse;
28  
29  import javax.naming.NamingException;
30  
31  
32  /**
33   * A schema entity change handler for DitMatchingRuleUses.
34   *
35   * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
36   * @version $Rev$
37   */
38  public class MetaMatchingRuleUseHandler extends AbstractSchemaChangeHandler
39  {
40  
41      protected MetaMatchingRuleUseHandler( Registries targetRegistries, PartitionSchemaLoader loader ) throws Exception
42      {
43          super( targetRegistries, loader );
44          // TODO Auto-generated constructor stub
45      }
46  
47  
48      @Override
49      protected void modify( LdapDN name, ServerEntry entry, ServerEntry targetEntry, 
50          boolean cascade ) throws NamingException
51      {
52          // TODO Auto-generated method stub
53      }
54  
55  
56      public void add( LdapDN name, ServerEntry entry ) throws NamingException
57      {
58          // TODO Auto-generated method stub
59      }
60  
61  
62      public void delete( LdapDN name, ServerEntry entry, boolean cascade ) throws NamingException
63      {
64          // TODO Auto-generated method stub
65      }
66  
67  
68      public void move( LdapDN oriChildName, LdapDN newParentName, Rdn newRn, boolean deleteOldRn,
69          ServerEntry entry, boolean cascade ) throws NamingException
70      {
71          // TODO Auto-generated method stub
72      }
73  
74  
75      public void replace( LdapDN oriChildName, LdapDN newParentName,
76          ServerEntry entry, boolean cascade ) throws NamingException
77      {
78          // TODO Auto-generated method stub
79      }
80  
81  
82      public void rename( LdapDN name, ServerEntry entry, Rdn newRdn, boolean cascade ) throws NamingException
83      {
84          // TODO Auto-generated method stub
85      }
86  
87  
88      public void add( MatchingRuleUse mru ) throws NamingException
89      {
90          // TODO Auto-generated method stub
91      }
92  
93  
94      public void delete( MatchingRuleUse mru, boolean cascade ) throws NamingException
95      {
96          // TODO Auto-generated method stub
97      }
98  }