1 | boolean getUseKeepalive() {↵ | | 1 | boolean isValidating() {↵
|
2 | return getPropertyAsBoolean(USE_KEEPALIVE, true);↵ | | 2 | return getPropertyAsBoolean(↵
|
3 | }↵ | | |
|
4 | ↵ | | |
|
5 | public boolean getSamplerDownloadImages↵ | | 3 | VALIDATE_KEY, false);↵
|
| | | 4 | }↵
|
|
| | | 5 | /**↵
|
| | | 6 | * Is this namespace aware?↵
|
| | | 7 | * ↵
|
| | | 8 | * @return boolean↵
|
| | | 9 | */↵
|
6 | () {↵ | | 10 | public boolean isNamespace() {↵
|
7 | return getPropertyAsBoolean(SAMPLER_DOWNLOAD_IMAGES, false);↵ | | 11 | return getPropertyAsBoolean(NAM↵
|
8 | }↵ | | |
|
| | | 12 | ESPACE_KEY, false);↵
|
| | | 13 | }↵
|
|
| | | 14 | /**↵
|
| | | 15 | * Is this using tolerant mode?↵
|
| | | 16 | * ↵
|
| | | 17 | * @return boolean↵
|
| | | 18 | */↵
|
9 | public boolean getRegexMatch() {↵ | | 19 | public boolean isTolerant() {↵
|
10 | return getPropertyAsBoolean(REGEX_MATCH, false);↵ | | 20 | return getPropertyAsBoolean(TOLERANT_KEY, false);↵
|
11 | }↵ | | 21 | }↵
|
12 | ↵ | | |
|
| | | 22 | /**↵
|
| | | 23 | * Negate the XPath test, that is return true if something is not found.↵
|
| | | 24 | * ↵
|
| | | 25 | * @return boolean negated↵
|
| | | 26 | */↵
|
13 | public boolean getHttpsSpoof() {↵ | | 27 | public boolean isNegated() {↵
|
14 | return getPropertyAsBoolean(HTTPS_SPOOF, false);↵ | | 28 | return getPropertyAsBoolean(NEGATE_KEY, false);↵
|
15 | } | | 29 | }
|