1 | String getRootdn() {↵ | | 1 | String getMatchNumberAsString() {↵
|
2 | return getPropertyAsString(ROOTDN);↵ | | 2 | return getPropertyAsString(MATCH_NUMBER);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Test attribute of the LdapConfig object.↵ | | 5 | * Sets the value of the variable if ↵
|
6 | * ↵ | | |
|
7 | * @param newTest↵ | | |
|
8 | * the new test value(Add,Modify,Delete and search)↵ | | 6 | no matches are found↵
|
| | | 7 | * ↵
|
| | | 8 | * @param defaultValue↵
|
9 | */↵ | | 9 | */↵
|
10 | public void setTest(String newTest) {↵ | | 10 | public void setDefaultValue(String defaultValue) {↵
|
11 | this.setProperty(TEST, newTest);↵ | | 11 | setProperty(↵
|
12 | }↵ | | |
|
|
13 | /**↵ | | |
|
14 | * Gets the test attribute of the LDAPSampler object.↵ | | |
|
15 | * ↵ | | |
|
16 | * @return the test value (Add, Modify, Delete and search)↵ | | |
|
17 | */↵ | | 12 | DEFAULT, defaultValue);↵
|
| | | 13 | }↵
|
|
18 | public String getTest() {↵ | | 14 | public String getDefaultValue() {↵
|
19 | return getPropertyAsString(TEST);↵ | | 15 | return getPropertyAsString(DEFAULT);↵
|
20 | } | | 16 | }
|