KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > servicemix > jms > JmsConfigurationMBean


1 /*
2  * Licensed to the Apache Software Foundation (ASF) under one or more
3  * contributor license agreements. See the NOTICE file distributed with
4  * this work for additional information regarding copyright ownership.
5  * The ASF licenses this file to You under the Apache License, Version 2.0
6  * (the "License"); you may not use this file except in compliance with
7  * the License. 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 package org.apache.servicemix.jms;
18
19 public interface JmsConfigurationMBean {
20
21     /**
22      * @return Returns the password.
23      */

24     public String JavaDoc getPassword();
25     /**
26      * @param password The password to set.
27      */

28     public void setPassword(String JavaDoc password);
29     /**
30      * @return Returns the userName.
31      */

32     public String JavaDoc getUserName();
33     /**
34      * @param userName The userName to set.
35      */

36     public void setUserName(String JavaDoc userName);
37     /**
38      * @return Returns the jndiConnectionFactoryName.
39      */

40     public String JavaDoc getJndiConnectionFactoryName();
41     /**
42      * @param jndiConnectionFactoryName The jndiName to set.
43      */

44     public void setJndiConnectionFactoryName(String JavaDoc jndiConnectionFactoryName);
45     /**
46      * @return Returns the jndiInitialContextFactory.
47      */

48     public String JavaDoc getJndiInitialContextFactory();
49     /**
50      * @param jndiInitialContextFactory The jndiInitialContextFactory to set.
51      */

52     public void setJndiInitialContextFactory(String JavaDoc jndiInitialContextFactory);
53     /**
54      * @return Returns the jndiProviderUrl.
55      */

56     public String JavaDoc getJndiProviderUrl();
57     /**
58      * @param jndiProviderUrl The jndiProviderUrl to set.
59      */

60     public void setJndiProviderUrl(String JavaDoc jndiProviderUrl);
61     /**
62      * @return Returns the processName.
63      */

64     public String JavaDoc getProcessorName();
65     /**
66      * @param processorName The processorName to set.
67      */

68     public void setProcessorName(String JavaDoc processorName);
69
70     public String JavaDoc getKeystoreManagerName();
71     
72     public void setKeystoreManagerName(String JavaDoc name);
73     
74     public String JavaDoc getAuthenticationServiceName();
75     
76     public void setAuthenticationServiceName(String JavaDoc name);
77     
78 }
79
Popular Tags