1 | String getPort() {↵ | | 1 | String getProviderUrl() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(PROVIDER_URL);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /***************************************************************************↵ | | 4 | /**↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object↵ | | 5 | * set the ↵
|
6 | * ↵ | | |
|
7 | * @param newRootdn ↵ | | |
|
8 | * The new rootdn value↵ | | |
|
9 | *************************************************************************↵ | | 6 | connection factory for↵
|
| | | 7 | * ↵
|
| | | 8 | * @param factory↵
|
10 | */↵ | | 9 | */↵
|
11 | public void setRootdn(String newRootdn) {↵ | | 10 | public void setConnectionFactory(String factory) {↵
|
12 | this.setProperty(ROOTDN, newRootdn);↵ | | 11 | setProperty(↵
|
13 | }↵ | | |
|
|
14 | /*************************************************************************↵ | | 12 | CONN_FACTORY, factory);↵
|
| | | 13 | }↵
|
|
15 | **↵ | | 14 | /**↵
|
16 | * Gets the Rootdn attribute of the LDAPSampler object↵ | | 15 | * return the connection factory parameter used to lookup the connection↵
|
| | | 16 | * factory from the JMS server↵
|
17 | * ↵ | | 17 | * ↵
|
18 | * @return The Rootdn value↵ | | 18 | * @return the ↵
|
19 | *************************************************************************↵ | | 19 | connection factory↵
|
20 | */↵ | | 20 | */↵
|
21 | public String getRootdn() {↵ | | 21 | public String getConnectionFactory() {↵
|
22 | return getPropertyAsString(ROOTDN);↵ | | 22 | return getPropertyAsString(CONN_FACTORY);↵
|
23 | | | 23 |
|