1 | String getPort() {↵ | | 1 | String getMessageChoice() {↵
|
2 | return getPropertyAsString(PORT);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
|
4 | /*************************************************************************↵ | | 3 | MESSAGE_CHOICE);↵
|
| | | 4 | }↵
|
|
5 | **↵ | | 5 | /**↵
|
6 | * Sets the Rootdn attribute of the LDAPSampler object↵ | | 6 | * set the ↵
|
7 | * ↵ | | |
|
8 | * @param newRootdn ↵ | | |
|
9 | * The new rootdn value↵ | | |
|
10 | *************************************************************************↵ | | 7 | input file for the publisher↵
|
| | | 8 | * ↵
|
| | | 9 | * @param file↵
|
11 | */↵ | | 10 | */↵
|
12 | public void setRootdn(String newRootdn) {↵ | | 11 | public void setInputFile(String file) {↵
|
13 | this.setProperty(ROOTDN, newRootdn);↵ | | 12 | setProperty(↵
|
14 | }↵ | | |
|
|
15 | /*************************************************************************↵ | | 13 | INPUT_FILE, file);↵
|
| | | 14 | }↵
|
|
16 | **↵ | | 15 | /**↵
|
17 | * Gets the Rootdn attribute of the LDAPSampler object↵ | | 16 | * return the ↵
|
18 | * ↵ | | |
|
19 | * @return The Rootdn value↵ | | |
|
20 | *************************************************************************↵ | | 17 | path of the input file↵
|
| | | 18 | * ↵
|
21 | */↵ | | 19 | */↵
|
22 | public String getRootdn() {↵ | | 20 | public String getInputFile() {↵
|
23 | return getPropertyAsString(ROOTDN);↵ | | 21 | return getPropertyAsString(INPUT_FILE);↵
|
24 | } | | 22 | }
|