1 | String getVarName() {↵ | | 1 | String getRootdn() {↵
|
2 | return getPropertyAsString(VAR_NAME);↵ | | 2 | return getPropertyAsString(ROOTDN);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | ↵ | | 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 | */↵
|
5 | public void setFormat(String format) {↵ | | 10 | public void setTest(String ↵
|
6 | setProperty(FORMAT, format);↵ | | |
|
7 | }↵ | | |
|
|
8 | ↵ | | 11 | newTest) {↵
|
| | | 12 | this.setProperty(TEST, newTest);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * Gets the test attribute of the LDAPSampler object.↵
|
| | | 16 | * ↵
|
| | | 17 | * @return the test value (Add, Modify, Delete and search)↵
|
| | | 18 | */↵
|
9 | public String getFormat() {↵ | | 19 | public String getTest() {↵
|
10 | return getPropertyAsString(FORMAT);↵ | | 20 | return getPropertyAsString(TEST);↵
|
11 | } | | 21 | }
|