LiJinHuan
2024-01-05 462188a2c982b0a8750dfe01692dfd898216bb0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
global class HttpRequest {
    global HttpRequest() { }
    /**
     * HTTP body
     */
    global String getBody() { }
    /**
     * HTTP body as blob
     */
    global Blob getBodyAsBlob() { }
    /**
     * returns XML body
     */
    global dom.Document getBodyDocument() { }
    /**
     * is compressed
     */
    global Boolean getCompressed() { }
    /**
     * Endpoint URL of the external server
     */
    global String getEndpoint() { }
    /**
     * Gets HTTP header for the given key
     */
    global String getHeader(String key) { }
    /**
     * Http request method
     */
    global String getMethod() { }
    /**
     * sets HTTP body with string param
     */
    global void setBody(String body) { }
    /**
     * sets HTTP body with blob param
     */
    global void setBodyAsBlob(Blob body) { }
    /**
     * sets XML body
     */
    global void setBodyDocument(Object body) { }
    /**
     * sets client certificate and password
     */
    global void setClientCertificate(String clientCert, String password) { }
    /**
     * sets client certificate name
     */
    global void setClientCertificateName(String certDevName) { }
    /**
     * sets compressed request
     */
    global void setCompressed(Boolean compressed) { }
    /**
     * sets the endpoint URL of the external server
     */
    global void setEndpoint(String endpoint) { }
    /**
     * sets HTTP header for this request
     */
    global void setHeader(String key, String value) { }
    /**
     * sets the method type
     */
    global void setMethod(String method) { }
    /**
     * sets connection and read timeout
     */
    global void setTimeout(Integer timeout) { }
    /**
     * Returns a string that displays and identifies this object's properties.
     */
    global String toString() { }
 
}