1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
34
35
36
37
38 public class MetaMatchingRuleUseHandler extends AbstractSchemaChangeHandler
39 {
40
41 protected MetaMatchingRuleUseHandler( Registries targetRegistries, PartitionSchemaLoader loader ) throws Exception
42 {
43 super( targetRegistries, loader );
44
45 }
46
47
48 @Override
49 protected void modify( LdapDN name, ServerEntry entry, ServerEntry targetEntry,
50 boolean cascade ) throws NamingException
51 {
52
53 }
54
55
56 public void add( LdapDN name, ServerEntry entry ) throws NamingException
57 {
58
59 }
60
61
62 public void delete( LdapDN name, ServerEntry entry, boolean cascade ) throws NamingException
63 {
64
65 }
66
67
68 public void move( LdapDN oriChildName, LdapDN newParentName, Rdn newRn, boolean deleteOldRn,
69 ServerEntry entry, boolean cascade ) throws NamingException
70 {
71
72 }
73
74
75 public void replace( LdapDN oriChildName, LdapDN newParentName,
76 ServerEntry entry, boolean cascade ) throws NamingException
77 {
78
79 }
80
81
82 public void rename( LdapDN name, ServerEntry entry, Rdn newRdn, boolean cascade ) throws NamingException
83 {
84
85 }
86
87
88 public void add( MatchingRuleUse mru ) throws NamingException
89 {
90
91 }
92
93
94 public void delete( MatchingRuleUse mru, boolean cascade ) throws NamingException
95 {
96
97 }
98 }