1 | String getRootdn() {↵ | | 1 | String getFilename() {↵
|
2 | return getPropertyAsString(ROOTDN);↵ | | 2 | return getPropertyAsString(FILENAME);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | |
|
5 | * Sets the Test attribute of the LdapConfig object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @param newTest↵ | | |
|
8 | * the new test value(Add,Modify,Delete and search)↵ | | |
|
9 | */↵ | | |
|
10 | public void setTest(String newTest) {↵ | | 4 | public void setRequestData(String newRequestData) {↵
|
11 | this.setProperty(TEST, newTest);↵ | | 5 | this.setProperty(REQUEST, new↵
|
12 | }↵ | | |
|
|
13 | /**↵ | | |
|
14 | * Gets the test attribute of the LDAPSampler object.↵ | | |
|
15 | * ↵ | | |
|
16 | * @return the test value (Add, Modify, Delete and search)↵ | | |
|
17 | */↵ | | 6 | RequestData);↵
|
| | | 7 | }↵
|
|
18 | public String getTest() {↵ | | 8 | public String getRequestData() {↵
|
19 | return getPropertyAsString(TEST);↵ | | 9 | return getPropertyAsString(REQUEST);↵
|
20 | } | | 10 | }
|