1 | void setPassword(String pwd) {↵ | | 1 | void setRefName(String refName) {↵
|
2 | setProperty(CREDENTIALS, pwd);↵ | | 2 | setProperty(RE↵
|
3 | }↵ | | |
|
|
4 | /**↵ | | |
|
5 | * return the password used to login to the jms server↵ | | |
|
6 | * ↵ | | |
|
7 | * @return the password used to login to the jms server↵ | | |
|
8 | */↵ | | 3 | FNAME, refName);↵
|
| | | 4 | }↵
|
|
9 | public String getPassword() {↵ | | 5 | public String getRefName() {↵
|
10 | return getPropertyAsString(CREDENTIALS);↵ | | 6 | return getPropertyAsString(RE↵
|
11 | }↵ | | |
|
|
12 | /**↵ | | |
|
13 | * set the number of iterations the sampler should aggregate↵ | | |
|
14 | * ↵ | | |
|
15 | * @param count↵ | | |
|
16 | */↵ | | |
|
17 | ↵ | | 7 | FNAME);↵
|
| | | 8 | }↵
|
| | | 9 | ↵
|
18 | public void setIterations(String count) {↵ | | 10 | public void setDefaultValue(String val) {↵
|
19 | setProperty(ITERATIONS, count);↵ | | 11 | setProperty(↵
|
20 | }↵ | | |
|
|
21 | /**↵ | | |
|
22 | * get the iterations as string↵ | | |
|
23 | * ↵ | | |
|
24 | * @return the number of iterations↵ | | |
|
25 | */↵ | | 12 | DEFAULT, val);↵
|
| | | 13 | }↵
|
|
26 | public String getIterations() {↵ | | 14 | public String getDefaultValue() {↵
|
27 | return getPropertyAsString(ITERATIONS);↵ | | 15 | return getPropertyAsString(DEFAULT);↵
|
28 | | | 16 |
|