1 | String getPort() {↵ | | 1 | String getUseAuth() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(USE_AUTH);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object.↵ | | 5 | * set↵
|
6 | * ↵ | | |
|
7 | * @param newRootdn↵ | | |
|
8 | * the new rootdn value↵ | | 6 | whether the sampler should read the response or not↵
|
| | | 7 | * ↵
|
| | | 8 | * @param read whether the sampler should read the response or not↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setRootdn(String newRootdn) {↵ | | 10 | public void setReadResponse(String read) {↵
|
11 | this.setProperty(ROOTDN, newRootdn);↵ | | 11 | setProperty(READ_RESPONSE, read);↵
|
12 | }↵ | | 12 | }↵
|
|
13 | /**↵ | | 13 | /**↵
|
14 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | 14 | * return whether the sampler should read the response↵
|
15 | * ↵ | | 15 | * ↵
|
16 | * @return the Rootdn value↵ | | 16 | * @return whether the sampler should read the response↵
|
17 | */↵ | | 17 | */↵
|
18 | public String getRootdn() {↵ | | 18 | public String getReadResponse() {↵
|
19 | return getPropertyAsString(ROOTDN);↵ | | 19 | return getPropertyAsString(READ_RESPONSE);↵
|
20 | | | 20 |
|