1 /** 2 * 3 * Copyright 2003-2004 The Apache Software Foundation 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 */ 17 18 package org.apache.geronimo.directory; 19 20 import java.io.File; 21 import java.net.InetAddress; 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 * @version $Rev: 355877 $ $Date: 2005-12-10 18:48:27 -0800 (Sat, 10 Dec 2005) $ 31 */ 32 public class MutableServerStartupConfiguration extends 33 ServerStartupConfiguration 34 { 35 private static final long serialVersionUID = 515104910980600099L; 36 37 public MutableServerStartupConfiguration() 38 { 39 super(); 40 } 41 42 public void setAllowAnonymousAccess( boolean arg0 ) 43 { 44 super.setAllowAnonymousAccess( arg0 ); 45 } 46 47 public void setAuthenticatorConfigurations( Set arg0 ) 48 { 49 super.setAuthenticatorConfigurations( arg0 ); 50 } 51 52 public void setBootstrapSchemas( Set arg0 ) 53 { 54 super.setBootstrapSchemas( arg0 ); 55 } 56 57 public void setContextPartitionConfigurations( Set arg0 ) 58 { 59 super.setContextPartitionConfigurations( arg0 ); 60 } 61 62 public void setInterceptorConfigurations( List arg0 ) 63 { 64 super.setInterceptorConfigurations( arg0 ); 65 } 66 67 public void setTestEntries( List arg0 ) 68 { 69 super.setTestEntries( arg0 ); 70 } 71 72 public void setWorkingDirectory( File arg0 ) 73 { 74 super.setWorkingDirectory( arg0 ); 75 } 76 77 public void setEnableKerberos( boolean enableKerberos ) 78 { 79 super.setEnableKerberos( enableKerberos ); 80 } 81 82 public void setHost(InetAddress host){ 83 super.setHost(host); 84 } 85 86 public void setLdapPort( int ldapPort ) 87 { 88 super.setLdapPort( ldapPort ); 89 } 90 91 public void setLdapsPort( int ldapsPort ) 92 { 93 super.setLdapsPort( ldapsPort ); 94 } 95 96 public void setMinaServiceRegistry( ServiceRegistry minaServiceRegistry ) 97 { 98 super.setMinaServiceRegistry( minaServiceRegistry ); 99 } 100 }