forked from sendgrid/sendgrid-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSendGridAPI.java
More file actions
91 lines (78 loc) · 1.97 KB
/
SendGridAPI.java
File metadata and controls
91 lines (78 loc) · 1.97 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
package com.sendgrid;
import java.io.IOException;
import java.util.Map;
public interface SendGridAPI {
/**
* Initializes Twilio SendGrid
*
* @param apiKey is your Twilio SendGrid API Key: https://app.sendgrid.com/settings/api_keys
*/
public void initializeSendGrid(String apiKey);
/**
* Returns the library version
*
* @return the library version.
*/
public String getLibraryVersion();
/**
* Gets the version.
*
* @return returns the version.
*/
public String getVersion();
/**
* Sets the version.
*
* @param version the Twilio SendGrid version.
*/
public void setVersion(String version);
/**
* Gets the request headers.
* @return returns a map of request headers.
*/
public Map<String, String> getRequestHeaders();
/**
* Adds a request headers.
*
* @param key the key
* @param value the value
* @return returns a map of request headers.
*/
public Map<String, String> addRequestHeader(String key, String value);
/**
* Removes a request headers.
*
* @param key the key
* @return returns a map of request headers.
*/
public Map<String, String> removeRequestHeader(String key);
/**
* Gets the host.
*
* @return returns the host.
*/
public String getHost();
/**
* Sets the host.
*
* @param host the host to set
*/
public void setHost(String host);
/**
* Class makeCall makes the call to the Twilio SendGrid API, override this method for
* testing.
*
* @param request the request
* @return returns a response.
* @throws IOException in case of network or marshal error.
*/
public Response makeCall(Request request) throws IOException;
/**
* Class api sets up the request to the Twilio SendGrid API, this is main interface.
*
* @param request the request
* @return returns a response.
* @throws IOException in case of network or marshal error.
*/
public Response api(Request request) throws IOException;
}