-
Notifications
You must be signed in to change notification settings - Fork 2
/
HttpClientFactory.java
81 lines (70 loc) · 2.32 KB
/
HttpClientFactory.java
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
package com.example.core.services;
import org.apache.http.client.fluent.Executor;
import org.apache.http.client.fluent.Request;
/**
* Factory for building pre-configured HttpClient Fluent Executor and Request objects
* based a configure host, port and (optionally) username/password.
*
* Factories will generally be accessed by service lookup using the factory.name property.
*/
public interface HttpClientFactory {
/**
* Get the configured Executor object from this factory.
*
* @return an Executor object
*/
Executor getExecutor();
/**
* Create a GET request using the base hostname and port defined in the factory configuration.
*
* @param partialUrl the portion of the URL after the port (and slash)
*
* @return a fluent Request object
*/
Request get(String partialUrl);
/**
* Create a PUT request using the base hostname and port defined in the factory configuration.
*
* @param partialUrl the portion of the URL after the port (and slash)
*
* @return a fluent Request object
*/
Request put(String partialUrl);
/**
* Create a POST request using the base hostname and port defined in the factory configuration.
*
* @param partialUrl the portion of the URL after the port (and slash)
*
* @return a fluent Request object
*/
Request post(String partialUrl);
/**
* Create a DELETE request using the base hostname and port defined in the factory configuration.
*
* @param partialUrl the portion of the URL after the port (and slash)
*
* @return a fluent Request object
*/
Request delete(String partialUrl);
/**
* Create a OPTIONS request using the base hostname and port defined in the factory configuration.
*
* @param partialUrl the portion of the URL after the port (and slash)
*
* @return a fluent Request object
*/
Request options(String partialUrl);
/**
* Get External URI type is form the factory configuration.
*
* @return External URI Type
*/
String getExternalURIType();
/**
* Get apiStoreLocatorHostName URI type is form the factory configuration.
*
* @return API StoreLocatorHost
*/
String getApiStoreLocatorHostName();
Request postWithAbsolute(String absolutelUrl);
}