This repository was archived by the owner on Oct 30, 2023. It is now read-only.
forked from joaopsilva/binance-java-api
-
Notifications
You must be signed in to change notification settings - Fork 599
Expand file tree
/
Copy pathBinanceApiClientFactory.java
More file actions
executable file
·167 lines (150 loc) · 5.36 KB
/
BinanceApiClientFactory.java
File metadata and controls
executable file
·167 lines (150 loc) · 5.36 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
package com.binance.api.client;
import com.binance.api.client.impl.*;
import com.binance.api.client.config.BinanceApiConfig;
import static com.binance.api.client.impl.BinanceApiServiceGenerator.getSharedClient;
/**
* A factory for creating BinanceApi client objects.
*/
public class BinanceApiClientFactory {
/**
* API Key
*/
private String apiKey;
/**
* Secret.
*/
private byte[] secret;
/**
* Instantiates a new binance api client factory.
*
* @param apiKey the API key
* @param secret the Secret
*/
private BinanceApiClientFactory(String apiKey, byte[] secret) {
this.apiKey = apiKey;
this.secret = secret;
BinanceApiConfig.useTestnet = false;
BinanceApiConfig.useTestnetStreaming = false;
}
/**
* Instantiates a new binance api client factory.
*
* @param apiKey the API key
* @param secret the Secret
* @param useTestnet true if endpoint is spot test network URL; false if endpoint is production spot API URL.
* @param useTestnetStreaming true for spot test network websocket streaming; false for no streaming.
*/
private BinanceApiClientFactory(String apiKey, byte[] secret, boolean useTestnet, boolean useTestnetStreaming) {
this(apiKey, secret);
if (useTestnet) {
BinanceApiConfig.useTestnet = true;
BinanceApiConfig.useTestnetStreaming = useTestnetStreaming; }
}
/**
* New instance.
*
* @param apiKey the API key
* @param secret the Secret
*
* @return the binance api client factory
*/
public static BinanceApiClientFactory newInstance(String apiKey, byte[] secret) {
return new BinanceApiClientFactory(apiKey, secret);
}
/**
* New instance.
*
* @param apiKey the API key
* @param secret the Secret
*
* @return the binance api client factory
* @deprecated use byte[] to store the secret
*/
@Deprecated
public static BinanceApiClientFactory newInstance(String apiKey, String secret) {
return newInstance(apiKey, secret.getBytes());
}
/**
* New instance with optional Spot Test Network endpoint.
*
* @param apiKey the API key
* @param secret the Secret
* @param useTestnet true if endpoint is spot test network URL; false if endpoint is production spot API URL.
* @param useTestnetStreaming true for spot test network websocket streaming; false for no streaming.
*
* @return the binance api client factory.
*/
public static BinanceApiClientFactory newInstance(String apiKey, byte[] secret, boolean useTestnet, boolean useTestnetStreaming) {
return new BinanceApiClientFactory(apiKey, secret, useTestnet, useTestnetStreaming);
}
/**
* New instance with optional Spot Test Network endpoint.
*
* @param apiKey the API key
* @param secret the Secret
* @param useTestnet true if endpoint is spot test network URL; false if endpoint is production spot API URL.
* @param useTestnetStreaming true for spot test network websocket streaming; false for no streaming.
*
* @return the binance api client factory.
* @deprecated use byte[] to store the secret
*/
@Deprecated
public static BinanceApiClientFactory newInstance(String apiKey, String secret, boolean useTestnet, boolean useTestnetStreaming) {
return newInstance(apiKey, secret.getBytes(), useTestnet, useTestnetStreaming);
}
/**
* New instance without authentication.
*
* @return the binance api client factory
*/
public static BinanceApiClientFactory newInstance() {
return new BinanceApiClientFactory(null, null);
}
/**
* New instance without authentication and with optional Spot Test Network endpoint.
*
* @param useTestnet true if endpoint is spot test network URL; false if endpoint is production spot API URL.
* @param useTestnetStreaming true for spot test network websocket streaming; false for no streaming.
*
* @return the binance api client factory.
*/
public static BinanceApiClientFactory newInstance(boolean useTestnet, boolean useTestnetStreaming) {
return new BinanceApiClientFactory(null, null, useTestnet, useTestnetStreaming);
}
/**
* Creates a new synchronous/blocking REST client.
*/
public BinanceApiRestClient newRestClient() {
return new BinanceApiRestClientImpl(apiKey, secret);
}
/**
* Creates a new asynchronous/non-blocking REST client.
*/
public BinanceApiAsyncRestClient newAsyncRestClient() {
return new BinanceApiAsyncRestClientImpl(apiKey, secret);
}
/**
* Creates a new asynchronous/non-blocking Margin REST client.
*/
public BinanceApiAsyncMarginRestClient newAsyncMarginRestClient() {
return new BinanceApiAsyncMarginRestClientImpl(apiKey, secret);
}
/**
* Creates a new synchronous/blocking Margin REST client.
*/
public BinanceApiMarginRestClient newMarginRestClient() {
return new BinanceApiMarginRestClientImpl(apiKey, secret);
}
/**
* Creates a new web socket client used for handling data streams.
*/
public BinanceApiWebSocketClient newWebSocketClient() {
return new BinanceApiWebSocketClientImpl(getSharedClient());
}
/**
* Creates a new synchronous/blocking Swap REST client.
*/
public BinanceApiSwapRestClient newSwapRestClient() {
return new BinanceApiSwapRestClientImpl(apiKey, secret);
}
}