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