KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > activemq > jaas > ldap > MutableServerStartupConfiguration


1 /**
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one or more
4  * contributor license agreements. See the NOTICE file distributed with
5  * this work for additional information regarding copyright ownership.
6  * The ASF licenses this file to You under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with
8  * the License. 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 package org.apache.activemq.jaas.ldap;
19
20 import java.io.File JavaDoc;
21 import java.net.InetAddress JavaDoc;
22 import java.util.List JavaDoc;
23 import java.util.Set JavaDoc;
24
25 import org.apache.mina.registry.ServiceRegistry;
26
27 /**
28  * A mutable version of {@link ServerStartupConfiguration}.
29  *
30  * @version $Rev: 233391 $ $Date: 2005-08-18 16:38:47 -0600 (Thu, 18 Aug 2005) $
31  */

32 public class MutableServerStartupConfiguration extends
33         ServerStartupConfiguration
34 {
35     private static final long serialVersionUID = 515104910980600099L;
36
37     public MutableServerStartupConfiguration() {
38         super();
39     }
40
41     public void setAllowAnonymousAccess(boolean arg0) {
42         super.setAllowAnonymousAccess(arg0);
43     }
44
45     public void setAuthenticatorConfigurations(Set JavaDoc arg0) {
46         super.setAuthenticatorConfigurations(arg0);
47     }
48
49     public void setBootstrapSchemas(Set JavaDoc arg0) {
50         super.setBootstrapSchemas(arg0);
51     }
52
53     public void setContextPartitionConfigurations(Set JavaDoc arg0) {
54         super.setContextPartitionConfigurations(arg0);
55     }
56
57     public void setInterceptorConfigurations(List JavaDoc arg0) {
58         super.setInterceptorConfigurations(arg0);
59     }
60
61     public void setTestEntries(List JavaDoc arg0) {
62         super.setTestEntries(arg0);
63     }
64
65     public void setWorkingDirectory(File JavaDoc arg0) {
66         super.setWorkingDirectory(arg0);
67     }
68
69     public void setEnableKerberos(boolean enableKerberos) {
70         super.setEnableKerberos(enableKerberos);
71     }
72
73     public void setHost(InetAddress JavaDoc host) {
74         super.setHost(host);
75     }
76
77     public void setLdapPort(int ldapPort) {
78         super.setLdapPort(ldapPort);
79     }
80
81     public void setLdapsPort(int ldapsPort) {
82         super.setLdapsPort(ldapsPort);
83     }
84
85     public void setMinaServiceRegistry(ServiceRegistry minaServiceRegistry) {
86         super.setMinaServiceRegistry(minaServiceRegistry);
87     }
88 }
89
Popular Tags