1 | String getDefaultValue() {↵ | | 1 | String getPassword() {↵
|
2 | return getPropertyAsString(DEFAULT);↵ | | 2 | return getPropertyAsString(↵
|
3 | }↵ | | |
|
| | | 3 | CREDENTIALS);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * set the number of iterations the sampler should aggregate↵
|
| | | 7 | * ↵
|
| | | 8 | * @param count↵
|
| | | 9 | */↵
|
4 | public void setTemplate(String template) {↵ | | 10 | public void setIterations(String count) {↵
|
5 | setProperty(TEMPLATE, template);↵ | | 11 | setProperty(ITE↵
|
6 | }↵ | | |
|
| | | 12 | RATIONS, count);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * get the iterations as string↵
|
| | | 16 | * ↵
|
| | | 17 | * @return the number of iterations↵
|
| | | 18 | */↵
|
7 | public String getTemplate() {↵ | | 19 | public String getIterations() {↵
|
8 | return getPropertyAsString(TEMPLATE);↵ | | 20 | return getPropertyAsString(ITERATIONS);↵
|
9 | } | | 21 | }
|