1 | void setPassword(String pwd) {↵ | | 1 | void setRequestData(String newRequestData) {↵
|
2 | setProperty(CREDENTIALS, pwd);↵ | | 2 | this.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 | QUEST, newRequestData);↵
|
| | | 4 | }↵
|
|
9 | public String getPassword() {↵ | | 5 | public String getRequestData() {↵
|
10 | return getPropertyAsString(CREDENTIALS);↵ | | 6 | return getPropertyAsString(REQUEST);↵
|
11 | }↵ | | 7 | }↵
|
|
12 | /**↵ | | |
|
13 | * set the number of iterations the sampler should aggregate↵ | | |
|
14 | * ↵ | | |
|
15 | * @param count↵ | | |
|
16 | */↵ | | |
|
17 | public void setIterations(String count) {↵ | | 8 | public void setTimeout(String newTimeout) {↵
|
18 | setProperty(ITERATIONS, count);↵ | | 9 | this.setProperty(FILENAME, newTimeout);↵
|
19 | | | 10 |
|