1 | String getPassword() {↵ | | 1 | String getConfigChoice() {↵
|
2 | return getPropertyAsString(CREDENTIALS);↵ | | 2 | return getPropertyAsString(CONFIG_CHOICE);↵
|
3 | }↵ | | 3 | }↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * set the number of iterations the sampler should aggregate↵ | | 5 | * set the source of the message↵
|
6 | * ↵ | | 6 | * ↵
|
7 | * @param count↵ | | 7 | * @param choice↵
|
8 | */↵ | | 8 | */↵
|
9 | public void setIterations(String count) {↵ | | 9 | public void setMessageChoice(String choice) {↵
|
10 | setProperty(ITERATIONS, count);↵ | | 10 | setProperty(↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * get the iterations as string↵ | | |
|
14 | * ↵ | | |
|
15 | * @↵ | | 11 | MESSAGE_CHOICE, choice);↵
|
| | | 12 | }↵
|
|
| | | 13 | /**↵
|
16 | return the number of iterations↵ | | 14 | * return the source of the message↵
|
| | | 15 | * ↵
|
17 | */↵ | | 16 | */↵
|
18 | public String getIterations() {↵ | | 17 | public String getMessageChoice() {↵
|
19 | return getPropertyAsString(ITERATIONS);↵ | | 18 | return getPropertyAsString(MESSAGE_CHOICE);↵
|
20 | | | 19 |
|