1 | String getXPathQuery(){↵ | | 1 | String getPort() {↵
|
2 | return getPropertyAsString(XPATH_QUERY);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
4 | ↵ | | 3 | PORT);↵
|
| | | 4 | }↵
|
|
| | | 5 | /***************************************************************************↵
|
| | | 6 | * Sets the Rootdn attribute of the LDAPSampler object↵
|
| | | 7 | * ↵
|
| | | 8 | * @param newRootdn ↵
|
| | | 9 | * The new rootdn value↵
|
| | | 10 | **************************************************************************/↵
|
5 | public void setRefName(String refName) {↵ | | 11 | public void setRootdn(String newRootdn) {↵
|
6 | setProperty(REFNAME, refName);↵ | | 12 | this.setProperty(R↵
|
7 | }↵ | | |
|
| | | 13 | OOTDN, newRootdn);↵
|
| | | 14 | }↵
|
|
| | | 15 | /***************************************************************************↵
|
| | | 16 | * Gets the Rootdn attribute of the LDAPSampler object↵
|
| | | 17 | * ↵
|
| | | 18 | * @return The Rootdn value↵
|
| | | 19 | **************************************************************************/↵
|
8 | public String getRefName() {↵ | | 20 | public String getRootdn() {↵
|
9 | return getPropertyAsString(REFNAME);↵ | | 21 | return getPropertyAsString(ROOTDN);↵
|
10 | } | | 22 | }
|