~testplan-team/testplan/main

« back to all changes in this revision

Viewing changes to src/share/testplan/auto/ResourceRequest.java

  • Committer: edA-qa mort-ora-y
  • Date: 2010-06-09 11:42:29 UTC
  • mto: This revision was merged to the branch mainline in revision 343.
  • Revision ID: eda-qa@disemia.com-20100609114229-yzuim03r8kqn6ei0
adding TypeConvertIterator

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 *              SchemeOptions
34
34
 *                      Header:Name = value (HTTP Headers)
35
35
 *                      Method = HTTP Request method
36
 
 *                      Encoding = parameter encoding method
 
36
 *                      Encoding = parameter encoding method *
37
37
 *                      Charset = parameter character set / request character set encoding
38
38
 *                      TransferEncoding = *how to encode for transfer, typical/supported values include:
39
39
 *                              default, none, chunked
40
40
 *
 
41
 * *Encoding - if encoding is given as ENCODING_EXPLICIT then it is expected that only a single QueryOption
 
42
 * exists and it will be used to create the body of the request. The "Charset" in this case will not be
 
43
 * used to encode the body, but will still be sent on the request, thus it should be set appropriately
 
44
 * or overridden in the QueryOption.
 
45
 *
41
46
 * *TransferEncoding - the standards call the header TransferEncoding but refer to it as
42
47
 * TransferCoding. We're keeping the Encoding term to be consistent with parameter Encoding
43
48
 * and the normal header field. Also note that "identity" is not supported and was removed from
46
51
 */
47
52
public interface ResourceRequest {
48
53
 
 
54
        static public final String ENCODING_EXPLICIT = "*Explicit";
 
55
        
49
56
        static public class NameValuePair {
50
57
                public String name;
51
58
                public Object value;