1 | String getPassword() {↵ | | 1 | String getMessageChoice() {↵
|
2 | return getPropertyAsString(CREDENTIALS);↵ | | 2 | return getPropertyAsString(MESSAGE_CHOICE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the number of iterations the sampler should aggregate↵ | | 5 | * set the input file for the publisher↵
|
6 | * ↵ | | 6 | * ↵
|
7 | * @param count↵ | | 7 | * @param file↵
|
8 | */↵ | | 8 | */↵
|
9 | public void setIterations(String count) {↵ | | 9 | public void setInputFile(String file) {↵
|
10 | setProperty(ITERATIONS, count);↵ | | 10 | setProperty(INPUT_FILE, file);↵
|
11 | }↵ | | 11 | }↵
|
|
12 | /**↵ | | 12 | /**↵
|
13 | * get the iterations as string↵ | | 13 | * return the ↵
|
14 | * ↵ | | |
|
15 | * @return the number of iterations↵ | | 14 | path of the input file↵
|
| | | 15 | * ↵
|
16 | */↵ | | 16 | */↵
|
17 | public String getIterations() {↵ | | 17 | public String getInputFile() {↵
|
18 | return getPropertyAsString(ITERATIONS);↵ | | 18 | return getPropertyAsString(INPUT_FILE);↵
|
19 | | | 19 |
|