1 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 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 } | Popular Tags |