1 | void setRootdn(String newRootdn) {↵ | | 1 | void set↵
|
2 | this.setProperty(ROOTDN, newRootdn);↵ | | |
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | |
|
6 | * ↵ | | |
|
7 | * @return the Rootdn value↵ | | |
|
8 | */↵ | | |
|
9 | ↵ | | 2 | XPathQuery(String val){↵
|
| | | 3 | setProperty(XPATH_QUERY,val); ↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
10 | public String getRootdn() {↵ | | 6 | public String getXPathQuery(){↵
|
11 | return getPropertyAsString(ROOTDN);↵ | | 7 | return getPropertyAsString(↵
|
12 | }↵ | | |
|
|
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 | XPATH_QUERY);↵
|
| | | 9 | }↵
|
| | | 10 | ↵
|
19 | public void setTest(String newTest) {↵ | | 11 | public void setRefName(String refName) {↵
|
20 | this.setProperty(TEST, newTest);↵ | | 12 | setProperty(↵
|
21 | }↵ | | |
|
|
22 | /**↵ | | |
|
23 | * Gets the test attribute of the LDAPSampler object.↵ | | |
|
24 | * ↵ | | |
|
25 | * @return the test value (Add, Modify, Delete and search)↵ | | |
|
26 | */↵ | | 13 | REFNAME, refName);↵
|
| | | 14 | }↵
|
|
27 | public String getTest() {↵ | | 15 | public String getRefName() {↵
|
28 | return getPropertyAsString(TEST);↵ | | 16 | return getPropertyAsString(REFNAME);↵
|
29 | | | 17 |
|