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.List;
23 import java.util.Set;
24
25 import org.apache.mina.registry.ServiceRegistry;
26
27 /***
28 * A mutable version of {@link ServerStartupConfiguration}.
29 *
30 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
31 * @version $Rev: 264732 $, $Date: 2005-08-30 04:04:51 -0400 (Tue, 30 Aug 2005) $
32 */
33 public class MutableServerStartupConfiguration extends
34 ServerStartupConfiguration
35 {
36 private static final long serialVersionUID = 515104910980600099L;
37
38 public MutableServerStartupConfiguration()
39 {
40 super();
41 }
42
43 public void setAllowAnonymousAccess( boolean arg0 )
44 {
45 super.setAllowAnonymousAccess( arg0 );
46 }
47
48 public void setAuthenticatorConfigurations( Set arg0 )
49 {
50 super.setAuthenticatorConfigurations( arg0 );
51 }
52
53 public void setBootstrapSchemas( Set arg0 )
54 {
55 super.setBootstrapSchemas( arg0 );
56 }
57
58 public void setContextPartitionConfigurations( Set arg0 )
59 {
60 super.setContextPartitionConfigurations( arg0 );
61 }
62
63 public void setInterceptorConfigurations( List arg0 )
64 {
65 super.setInterceptorConfigurations( arg0 );
66 }
67
68 public void setTestEntries( List arg0 )
69 {
70 super.setTestEntries( arg0 );
71 }
72
73 public void setWorkingDirectory( File arg0 )
74 {
75 super.setWorkingDirectory( arg0 );
76 }
77
78 public void setEnableKerberos( boolean enableKerberos )
79 {
80 super.setEnableKerberos( enableKerberos );
81 }
82
83 public void setLdapPort( int ldapPort )
84 {
85 super.setLdapPort( ldapPort );
86 }
87
88 public void setLdapsPort( int ldapsPort )
89 {
90 super.setLdapsPort( ldapsPort );
91 }
92
93 public void setMinaServiceRegistry( ServiceRegistry minaServiceRegistry )
94 {
95 super.setMinaServiceRegistry( minaServiceRegistry );
96 }
97 }