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