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