1 | String getTest() {↵ | | 1 | String getIncrementAsString() {↵
|
2 | return getPropertyAsString(TEST);↵ | | 2 | return getPropertyAsString(INCREMENT);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | ↵
|
5 | * Sets the UserDefinedTest attribute of the LDAPSampler object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param value↵ | | |
|
8 | * the new UserDefinedTest value↵ | | |
|
9 | */↵ | | |
|
10 | public void setUserDefinedTest(boolean value) {↵ | | 5 | public void setIsPerUser(boolean isPer) {↵
|
11 | setProperty(new BooleanProperty(USER_DEFINED, value));↵ | | 6 | setProperty(new BooleanProperty(↵
|
12 | }↵ | | |
|
|
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↵ | | 7 | PER_USER, isPer));↵
|
| | | 8 | }↵
|
|
20 | () {↵ | | 9 | public boolean isPerUser() {↵
|
21 | return getPropertyAsBoolean(USER_DEFINED);↵ | | 10 | return getPropertyAsBoolean(PER_USER);↵
|
22 | } | | 11 | }
|