001 /**
002 *
003 * Copyright 2003-2004 The Apache Software Foundation
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 * http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017
018 package org.apache.geronimo.directory;
019
020 import java.io.File;
021 import java.net.InetAddress;
022 import java.util.List;
023 import java.util.Set;
024
025 import org.apache.mina.registry.ServiceRegistry;
026
027 /**
028 * A mutable version of {@link ServerStartupConfiguration}.
029 *
030 * @version $Rev: 355877 $ $Date: 2005-12-10 18:48:27 -0800 (Sat, 10 Dec 2005) $
031 */
032 public class MutableServerStartupConfiguration extends
033 ServerStartupConfiguration
034 {
035 private static final long serialVersionUID = 515104910980600099L;
036
037 public MutableServerStartupConfiguration()
038 {
039 super();
040 }
041
042 public void setAllowAnonymousAccess( boolean arg0 )
043 {
044 super.setAllowAnonymousAccess( arg0 );
045 }
046
047 public void setAuthenticatorConfigurations( Set arg0 )
048 {
049 super.setAuthenticatorConfigurations( arg0 );
050 }
051
052 public void setBootstrapSchemas( Set arg0 )
053 {
054 super.setBootstrapSchemas( arg0 );
055 }
056
057 public void setContextPartitionConfigurations( Set arg0 )
058 {
059 super.setContextPartitionConfigurations( arg0 );
060 }
061
062 public void setInterceptorConfigurations( List arg0 )
063 {
064 super.setInterceptorConfigurations( arg0 );
065 }
066
067 public void setTestEntries( List arg0 )
068 {
069 super.setTestEntries( arg0 );
070 }
071
072 public void setWorkingDirectory( File arg0 )
073 {
074 super.setWorkingDirectory( arg0 );
075 }
076
077 public void setEnableKerberos( boolean enableKerberos )
078 {
079 super.setEnableKerberos( enableKerberos );
080 }
081
082 public void setHost(InetAddress host){
083 super.setHost(host);
084 }
085
086 public void setLdapPort( int ldapPort )
087 {
088 super.setLdapPort( ldapPort );
089 }
090
091 public void setLdapsPort( int ldapsPort )
092 {
093 super.setLdapsPort( ldapsPort );
094 }
095
096 public void setMinaServiceRegistry( ServiceRegistry minaServiceRegistry )
097 {
098 super.setMinaServiceRegistry( minaServiceRegistry );
099 }
100 }