01: /*
02: * soapUI, copyright (C) 2004-2007 eviware.com
03: *
04: * soapUI is free software; you can redistribute it and/or modify it under the
05: * terms of version 2.1 of the GNU Lesser General Public License as published by
06: * the Free Software Foundation.
07: *
08: * soapUI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
09: * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10: * See the GNU Lesser General Public License for more details at gnu.org.
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: public final static long DEFAULT_SOCKET_TIMEOUT = 60000L;
23:
24: public final static String CLOSE_CONNECTIONS = HttpSettings.class
25: .getSimpleName()
26: + "@" + "close-connections";
27: public final static String USER_AGENT = HttpSettings.class
28: .getSimpleName()
29: + "@" + "user-agent";
30: public final static String AUTHENTICATE_PREEMPTIVELY = HttpSettings.class
31: .getSimpleName()
32: + "@" + "authenticate-preemptively";
33: public final static String SOCKET_TIMEOUT = HttpSettings.class
34: .getSimpleName()
35: + "@" + "socket_timeout";
36: public final static String INCLUDE_REQUEST_IN_TIME_TAKEN = HttpSettings.class
37: .getSimpleName()
38: + "@" + "include_request_in_time_taken";
39: public final static String INCLUDE_RESPONSE_IN_TIME_TAKEN = HttpSettings.class
40: .getSimpleName()
41: + "@" + "include_response_in_time_taken";
42: public final static String MAX_RESPONSE_SIZE = HttpSettings.class
43: .getSimpleName()
44: + "@" + "max_response_size";
45: public static final String ENCODED_URLS = HttpSettings.class
46: .getSimpleName()
47: + "@" + "encoded_urls";
48: public static final String BIND_ADDRESS = HttpSettings.class
49: .getSimpleName()
50: + "@" + "bind_address";
51:
52: public static final String MAX_CONNECTIONS_PER_HOST = HttpSettings.class
53: .getSimpleName()
54: + "@" + "max_connections_per_host";
55: public static final String MAX_TOTAL_CONNECTIONS = HttpSettings.class
56: .getSimpleName()
57: + "@" + "max_total_connections";
58: }
|