1 | void setXPathQuery(String val){↵ | | 1 | void setPassword(String ↵
|
2 | setProperty(XPATH_QUERY,val); ↵ | | |
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | ↵ | | 2 | pwd) {↵
|
| | | 3 | setProperty(CREDENTIALS, 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 | */↵
|
6 | public String getXPathQuery(){↵ | | 10 | public String getPassword() {↵
|
7 | return getPropertyAsString(XPATH_QUERY);↵ | | 11 | return getPropertyAsString(↵
|
8 | }↵ | | |
|
9 | ↵ | | 12 | CREDENTIALS);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * set the number of iterations the sampler should aggregate↵
|
| | | 16 | * ↵
|
| | | 17 | * @param count↵
|
| | | 18 | */↵
|
10 | public void setRefName(String refName) {↵ | | 19 | public void setIterations(String count) {↵
|
11 | setProperty(REFNAME, refName);↵ | | 20 | setProperty(ITERATIONS, count);↵
|
12 | } | | 21 | }
|