1 | void setUsername(String user) {↵ | | 1 | void setProviderUrl(String url) {↵
|
2 | setProperty(PRINCIPAL, user);↵ | | 2 | setProperty(PROVIDER_URL, url);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * return the username used to login to the jms server↵ | | 5 | * method returns the ↵
|
6 | * ↵ | | |
|
7 | * @return the username used to login to the jms server↵ | | 6 | provider url for jndi to connect to↵
|
| | | 7 | * ↵
|
| | | 8 | * @return the provider URL↵
|
8 | */↵ | | 9 | */↵
|
9 | public String getUsername() {↵ | | 10 | public String getProviderUrl() {↵
|
10 | return getPropertyAsString(PRINCIPAL);↵ | | 11 | return getPropertyAsString(PROVIDER_URL);↵
|
11 | }↵ | | 12 | }↵
|
|
12 | /**↵ | | 13 | /**↵
|
13 | * Set the password to login to the jms server↵ | | 14 | * set the connection factory for↵
|
14 | * ↵ | | 15 | * ↵
|
15 | * @param pwd↵ | | 16 | * @param factory↵
|
16 | */↵ | | 17 | */↵
|
17 | public void setPassword(String pwd) {↵ | | 18 | public void setConnectionFactory(String factory) {↵
|
18 | setProperty(CREDENTIALS, pwd);↵ | | 19 | setProperty(CONN_FACTORY, factory);↵
|
19 | }↵ | | 20 | }↵
|
|
20 | /**↵ | | 21 | /**↵
|
21 | * return the password used to login to↵ | | 22 | * return the connection factory parameter used to lookup the connection↵
|
22 | the jms server↵ | | 23 | * factory from the JMS server↵
|
23 | * ↵ | | 24 | * ↵
|
24 | * @return the password used to login to the jms server↵ | | 25 | * @return the connection factory↵
|
25 | */↵ | | 26 | */↵
|
26 | public String getPassword() {↵ | | 27 | public String getConnectionFactory() {↵
|
27 | return getPropertyAsString(CREDENTIALS);↵ | | 28 | return getPropertyAsString(CONN_FACTORY);↵
|
28 | | | 29 |
|