1 | String getPort() {↵ | | 1 | String getMatchNumberAsString() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(MATCH_NUMBER);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object.↵ | | 5 | * Sets the value of the variable if ↵
|
6 | * ↵ | | |
|
7 | * @param newRootdn↵ | | |
|
8 | * the new rootdn v↵ | | 6 | no matches are found↵
|
| | | 7 | * ↵
|
9 | alue↵ | | 8 | * @param defaultValue↵
|
10 | */↵ | | 9 | */↵
|
11 | public void setRootdn(String newRootdn) {↵ | | 10 | public void setDefaultValue(String defaultValue) {↵
|
12 | this.setProperty(ROOTDN, newRootdn);↵ | | 11 | setProperty(↵
|
13 | }↵ | | |
|
|
14 | /**↵ | | |
|
15 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | |
|
16 | * ↵ | | |
|
17 | * @return the Rootdn value↵ | | 12 | DEFAULT, defaultValue);↵
|
18 | */↵ | | 13 | }↵
|
|
19 | public String getRootdn() {↵ | | 14 | public String getDefaultValue() {↵
|
20 | return getPropertyAsString(ROOTDN);↵ | | 15 | return getPropertyAsString(DEFAULT);↵
|
21 | } | | 16 | }
|