1 | String getRandomPath() {↵ | | 1 | String getRootdn() {↵
|
2 | return getPropertyAsString(RANDOM_PATH);↵ | | 2 | return getPropertyAsString(ROOTDN);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the text for the message↵ | | 5 | * Sets the ↵
|
6 | * ↵ | | |
|
7 | * @param message↵ | | 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 setTextMessage(String message) {↵ | | 11 | public void setTest(String newTest) {↵
|
10 | setProperty(TEXT_MSG, message);↵ | | 12 | this.setProperty(TEST, newTest);↵
|
11 | }↵ | | 13 | }↵
|
|
12 | /**↵ | | 14 | /**↵
|
13 | * return the text for the message↵ | | 15 | * Gets the test ↵
|
14 | * ↵ | | 16 | attribute of the LDAPSampler object.↵
|
| | | 17 | * ↵
|
| | | 18 | * @return the test value (Add, Modify, Delete and search)↵
|
15 | */↵ | | 19 | */↵
|
16 | public String getTextMessage() {↵ | | 20 | public String getTest() {↵
|
17 | return getPropertyAsString(TEXT_MSG);↵ | | 21 | return getPropertyAsString(TEST);↵
|
18 | | | 22 |
|