1 | void setVarName(String name) {↵ | | 1 | void setRootdn(String newRootdn) {↵
|
2 | setProperty(VAR_NAME, name);↵ | | 2 | this.setProperty(↵
|
3 | }↵ | | |
|
| | | 3 | ROOTDN, newRootdn);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Gets the Rootdn attribute of the LDAPSampler object.↵
|
| | | 7 | * ↵
|
| | | 8 | * @return the Rootdn value↵
|
| | | 9 | */↵
|
4 | public String getVarName() {↵ | | 10 | public String getRootdn() {↵
|
5 | return getPropertyAsString(VAR_NAME);↵ | | 11 | return getPropertyAsString(ROOTDN);↵
|
6 | }↵ | | 12 | }↵
|
|
7 | ↵ | | 13 | /**↵
|
| | | 14 | * Sets the Test attribute of the LdapConfig object.↵
|
| | | 15 | * ↵
|
| | | 16 | * @param newTest↵
|
| | | 17 | * the new test value(Add,Modify,Delete and search)↵
|
| | | 18 | */↵
|
8 | public void setFormat(String format) {↵ | | 19 | public void setTest(String ↵
|
9 | setProperty(FORMAT, forma↵ | | 20 | newTest) {↵
|
10 | t);↵ | | 21 | this.setProperty(TEST, newTest);↵
|
11 | | | 22 |
|