1 | String getTest() {↵ | | 1 | String getContentEncoding() {↵
|
2 | return getPropertyAsString(TEST);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Sets the UserDefinedTest attribute of the LDAPSampler object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param value↵ | | |
|
8 | * the new UserDefinedTest value↵ | | |
|
9 | */↵ | | 3 | CONTENT_ENCODING);↵
|
| | | 4 | }↵
|
|
10 | public void setUserDefinedTest(boolean value) {↵ | | 5 | public void setUseKeepAlive(boolean value) {↵
|
11 | setProperty(new BooleanProperty(USER_DEFINED, value));↵ | | 6 | setProperty(new BooleanProperty(USE_KEEPALIVE, value));↵
|
12 | }↵ | | 7 | }↵
|
|
13 | /**↵ | | |
|
14 | * Gets the UserDefinedTest attribute of the LDAPSampler object.↵ | | |
|
15 | * ↵ | | |
|
16 | * @return the test value true or false. If true it will do the↵ | | |
|
17 | * UserDefinedTest else our own inbuild test case.↵ | | |
|
18 | */↵ | | |
|
19 | public boolean getUserDefinedTest() {↵ | | 8 | public boolean getUseKeepAlive() {↵
|
20 | return getPropertyAsBoolean(USER_DEFINED);↵ | | 9 | return getPropertyAsBoolean(USE_KEEPALIVE);↵
|
21 | | | 10 |
|