1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.ldap.server.configuration;
20
21 import java.io.File;
22 import java.util.Collection;
23 import java.util.List;
24 import java.util.Set;
25
26 import org.apache.mina.registry.ServiceRegistry;
27
28 /***
29 * A mutable version of {@link ServerStartupConfiguration}.
30 *
31 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
32 * @version $Rev: 329335 $, $Date: 2005-10-28 20:57:58 -0400 (Fri, 28 Oct 2005) $
33 */
34 public class MutableServerStartupConfiguration extends
35 ServerStartupConfiguration
36 {
37 private static final long serialVersionUID = 515104910980600099L;
38
39 public MutableServerStartupConfiguration()
40 {
41 super();
42 }
43
44 public void setAccessControlEnabled( boolean accessControlEnabled )
45 {
46 super.setAccessControlEnabled( accessControlEnabled );
47 }
48
49 public void setAllowAnonymousAccess( boolean arg0 )
50 {
51 super.setAllowAnonymousAccess( arg0 );
52 }
53
54 public void setAuthenticatorConfigurations( Set arg0 )
55 {
56 super.setAuthenticatorConfigurations( arg0 );
57 }
58
59 public void setBootstrapSchemas( Set arg0 )
60 {
61 super.setBootstrapSchemas( arg0 );
62 }
63
64 public void setContextPartitionConfigurations( Set arg0 )
65 {
66 super.setContextPartitionConfigurations( arg0 );
67 }
68
69 public void setInterceptorConfigurations( List arg0 )
70 {
71 super.setInterceptorConfigurations( arg0 );
72 }
73
74 public void setTestEntries( List arg0 )
75 {
76 super.setTestEntries( arg0 );
77 }
78
79 public void setWorkingDirectory( File arg0 )
80 {
81 super.setWorkingDirectory( arg0 );
82 }
83
84 public void setEnableKerberos( boolean enableKerberos )
85 {
86 super.setEnableKerberos( enableKerberos );
87 }
88
89 public void setEnableChangePassword( boolean enableChangePassword )
90 {
91 super.setEnableChangePassword( enableChangePassword );
92 }
93
94 public void setEnableNtp( boolean enableNtp )
95 {
96 super.setEnableNtp( enableNtp );
97 }
98
99 public void setLdapPort( int ldapPort )
100 {
101 super.setLdapPort( ldapPort );
102 }
103
104 public void setLdapsPort( int ldapsPort )
105 {
106 super.setLdapsPort( ldapsPort );
107 }
108
109 public void setMinaServiceRegistry( ServiceRegistry minaServiceRegistry )
110 {
111 super.setMinaServiceRegistry( minaServiceRegistry );
112 }
113
114 public void setExtendedOperationHandlers( Collection handlers )
115 {
116 super.setExtendedOperationHandlers( handlers );
117 }
118
119 public void setLdifDirectory( File ldifDirectory )
120 {
121 super.setLdifDirectory( ldifDirectory );
122 }
123
124 public void setLdifFilters( List ldifFilters )
125 {
126 super.setLdifFilters( ldifFilters );
127 }
128 }