1 | String getPort() {↵ | | 1 | String getConfigChoice() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(CONFIG_CHOICE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Sets the Rootdn attribute of the LDAPSampler object.↵ | | 5 | * set the ↵
|
6 | * ↵ | | |
|
7 | * @param newRootdn↵ | | |
|
8 | * the new rootdn valu↵ | | 6 | source of the message↵
|
| | | 7 | * ↵
|
9 | e↵ | | 8 | * @param choice↵
|
10 | */↵ | | 9 | */↵
|
11 | public void setRootdn(String newRootdn) {↵ | | 10 | public void setMessageChoice(String choice) {↵
|
12 | this.setProperty(ROOTDN, newRootdn);↵ | | 11 | setProperty(MESSAGE_CHOICE, choice);↵
|
13 | }↵ | | 12 | }↵
|
|
14 | /**↵ | | 13 | /**↵
|
15 | * Gets the Rootdn attribute of the LDAPSampler object.↵ | | 14 | * return the ↵
|
16 | * ↵ | | |
|
17 | * @return the Rootdn value↵ | | 15 | source of the message↵
|
| | | 16 | * ↵
|
18 | */↵ | | 17 | */↵
|
19 | public String getRootdn() {↵ | | 18 | public String getMessageChoice() {↵
|
20 | return getPropertyAsString(ROOTDN);↵ | | 19 | return getPropertyAsString(MESSAGE_CHOICE);↵
|
21 | } | | 20 | }
|