View Javadoc

1   /*
2    *   @(#) $Id: MutableServerStartupConfiguration.java 264732 2005-08-30 08:04:51Z akarasulu $
3    *
4    *   Copyright 2004 The Apache Software Foundation
5    *
6    *   Licensed under the Apache License, Version 2.0 (the "License");
7    *   you may not use this file except in compliance with the License.
8    *   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, software
13   *   distributed under the License is distributed on an "AS IS" BASIS,
14   *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   *   See the License for the specific language governing permissions and
16   *   limitations under the License.
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  }