1 | void setInputFile(String file) {↵ | | 1 | void setRootdn(String newRootdn) {↵
|
2 | setProperty(INPUT_FILE, file);↵ | | 2 | this.setProperty(ROOTDN, newRootdn);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * return the path of the input file↵ | | 5 | * Gets the ↵
|
6 | * ↵ | | 6 | Rootdn attribute of the LDAPSampler object.↵
|
| | | 7 | * ↵
|
| | | 8 | * @return the Rootdn value↵
|
7 | */↵ | | 9 | */↵
|
8 | public String getInputFile() {↵ | | 10 | public String getRootdn() {↵
|
9 | return getPropertyAsString(INPUT_FILE);↵ | | 11 | return getPropertyAsString(ROOTDN);↵
|
10 | }↵ | | 12 | }↵
|
|
11 | /**↵ | | 13 | /**↵
|
12 | * set the random path for the messages↵ | | 14 | * Sets the ↵
|
13 | * ↵ | | |
|
14 | * @param path↵ | | 15 | Test attribute of the LdapConfig object.↵
|
| | | 16 | * ↵
|
| | | 17 | * @param newTest↵
|
| | | 18 | * the new test value(Add,Modify,Delete and search)↵
|
15 | */↵ | | 19 | */↵
|
16 | public void setRandomPath(String path) {↵ | | 20 | public void setTest(String newTest) {↵
|
17 | setProperty(RANDOM_PATH, path);↵ | | 21 | this.setProperty(TEST, newTest);↵
|
18 | | | 22 |
|