1
2
3
4
5
6
7
8
9
10
11
12
13 package com.eviware.soapui.settings;
14
15 /***
16 * HTTP-related settings constants
17 *
18 * @author Ole.Matzura
19 */
20
21 public interface HttpSettings
22 {
23 public final static long DEFAULT_SOCKET_TIMEOUT = 60000L;
24
25 public final static String CLOSE_CONNECTIONS = HttpSettings.class.getSimpleName() + "@" + "close-connections";
26 public final static String USER_AGENT = HttpSettings.class.getSimpleName() + "@" + "user-agent";
27 public final static String AUTHENTICATE_PREEMPTIVELY = HttpSettings.class.getSimpleName() + "@" + "authenticate-preemptively";
28 public final static String SOCKET_TIMEOUT = HttpSettings.class.getSimpleName() + "@" + "socket_timeout";
29 public final static String INCLUDE_REQUEST_IN_TIME_TAKEN = HttpSettings.class.getSimpleName() + "@" + "include_request_in_time_taken";
30 public final static String INCLUDE_RESPONSE_IN_TIME_TAKEN = HttpSettings.class.getSimpleName() + "@" + "include_response_in_time_taken";
31 public final static String MAX_RESPONSE_SIZE = HttpSettings.class.getSimpleName() + "@" + "max_response_size";
32 public static final String ENCODED_URLS = HttpSettings.class.getSimpleName() + "@" + "encoded_urls";
33 }