-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClient.java
51 lines (44 loc) · 1.28 KB
/
Client.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
package com.chavaillaz.client.common;
/**
* Base client having methods to set up proxy and authentication.
*
* @param <I> The interface type (to be returned by methods in order to chain calls)
*/
public interface Client<I> {
/**
* Sets the proxy to use for all requests to the API.
*
* @param host The proxy host
* @param port The proxy port
* @return The current client instance
*/
I withProxy(String host, Integer port);
/**
* Sets the proxy to use for all requests to the API.
*
* @param url The proxy URL
* @return The current client instance
*/
I withProxy(String url);
/**
* Uses the anonymous access if available for all requests to the API.
*
* @return The current client instance
*/
I withAnonymousAuthentication();
/**
* Sets the credentials to use for all requests to the API.
*
* @param token The access token
* @return The current client instance
*/
I withTokenAuthentication(String token);
/**
* Sets the credentials to use for all requests to the API.
*
* @param username The username
* @param password The password
* @return The current client instance
*/
I withUserAuthentication(String username, String password);
}