1 | void setRefName(String refName) {↵ | | 1 | void setPassword(String pwd) {↵
|
2 | setProperty(REFNAME, refName);↵ | | 2 | setProperty(CRE↵
|
3 | }↵ | | |
|
| | | 3 | DENTIALS, pwd);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * return the password used to login to the jms server↵
|
| | | 7 | * ↵
|
| | | 8 | * @return the password used to login to the jms server↵
|
| | | 9 | */↵
|
4 | public String getRefName() {↵ | | 10 | public String getPassword() {↵
|
5 | return getPropertyAsString(REFNAME);↵ | | 11 | return getPropertyAsString(CRE↵
|
6 | }↵ | | |
|
7 | ↵ | | |
|
8 | ↵ | | 12 | DENTIALS);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * set the number of iterations the sampler should aggregate↵
|
| | | 16 | * ↵
|
| | | 17 | * @param count↵
|
| | | 18 | */↵
|
9 | public void setDefaultValue(String val) {↵ | | 19 | public void setIterations(String count) {↵
|
10 | setProperty(DEFAULT, val);↵ | | 20 | setProperty(ITERATIONS, count);↵
|
11 | | | 21 |
|