1 | String getMethod() {↵ | | 1 | String getProviderUrl() {↵
|
2 | return getPropertyAsString(METHOD);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | PROVIDER_URL);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the connection factory for↵
|
| | | 7 | * ↵
|
| | | 8 | * @param factory↵
|
| | | 9 | */↵
|
4 | public void setContentEncoding(String value) {↵ | | 10 | public void setConnectionFactory(String factory) {↵
|
5 | setProperty(CONTENT_ENCODING, value);↵ | | 11 | setProperty(CON↵
|
6 | }↵ | | |
|
| | | 12 | N_FACTORY, factory);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * return the connection factory parameter used to lookup the connection↵
|
| | | 16 | * factory from the JMS server↵
|
| | | 17 | * ↵
|
| | | 18 | * @return the connection factory↵
|
| | | 19 | */↵
|
7 | public String getContentEncoding() {↵ | | 20 | public String getConnectionFactory() {↵
|
8 | return getPropertyAsString(CONTENT_ENCODING);↵ | | 21 | return getPropertyAsString(CONN_FACTORY);↵
|
9 | | | 22 |
|