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