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