1 | void setTest(String newTest) {↵ | | 1 | void set↵
|
2 | this.setProperty(TEST, newTest);↵ | | |
|
3 | }↵ | | |
|
|
4 | /***************************************************************************↵ | | |
|
5 | * Gets the test attribute of the LDAPSampler object↵ | | |
|
6 | * ↵ | | |
|
7 | * @return The test value (Add,Modify,Delete and search)↵ | | |
|
8 | **************************************************************************/↵ | | |
|
9 | ↵ | | 2 | XPathQuery(String val){↵
|
| | | 3 | setProperty(XPATH_QUERY,val); ↵
|
| | | 4 | }↵
|
| | | 5 | ↵
|
10 | public String getTest() {↵ | | 6 | public String getXPathQuery(){↵
|
11 | return getPropertyAsString(TEST);↵ | | 7 | return getPropertyAsString(↵
|
12 | }↵ | | |
|
|
13 | /***************************************************************************↵ | | |
|
14 | * Sets the attributes of the LdapConfig object↵ | | |
|
15 | * ↵ | | |
|
16 | * @param newAttrs↵ | | |
|
17 | * The new attributes value↵ | | |
|
18 | **************************************************************************/↵ | | 8 | XPATH_QUERY);↵
|
| | | 9 | }↵
|
| | | 10 | ↵
|
19 | public void setAttrs(String newAttrs) {↵ | | 11 | public void setRefName(String refName) {↵
|
20 | this.setProperty(ATTRIBS, newAttrs);↵ | | 12 | setProperty(↵
|
21 | }↵ | | |
|
|
22 | /***************************************************************************↵ | | |
|
23 | * Gets the attributes of the LDAPSampler object↵ | | |
|
24 | * ↵ | | |
|
25 | * @return The attributes↵ | | |
|
26 | **************************************************************************/↵ | | 13 | REFNAME, refName);↵
|
| | | 14 | }↵
|
|
27 | public String getAttrs() {↵ | | 15 | public String getRefName() {↵
|
28 | return getPropertyAsString(ATTRIBS);↵ | | 16 | return getPropertyAsString(REFNAME);↵
|
29 | } | | 17 | }
|