You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Instantiates a new OkHttp request adapter with the provided authentication provider, and the parse node factory.
82
-
* @param authenticationProvider the authentication provider to use for authenticating requests.
83
-
* @param parseNodeFactory the parse node factory to use for parsing responses.
84
+
* Instantiates a new OkHttp request adapter with the provided authentication
85
+
* provider, and the parse node factory.
86
+
*
87
+
* @param authenticationProvider the authentication provider to use for
88
+
* authenticating requests.
89
+
* @param parseNodeFactory the parse node factory to use for parsing
90
+
* responses.
84
91
*/
85
92
@SuppressWarnings("LambdaLast")
86
93
publicOkHttpRequestAdapter(
@@ -90,10 +97,15 @@ public OkHttpRequestAdapter(
90
97
}
91
98
92
99
/**
93
-
* Instantiates a new OkHttp request adapter with the provided authentication provider, parse node factory, and the serialization writer factory.
94
-
* @param authenticationProvider the authentication provider to use for authenticating requests.
95
-
* @param parseNodeFactory the parse node factory to use for parsing responses.
96
-
* @param serializationWriterFactory the serialization writer factory to use for serializing requests.
100
+
* Instantiates a new OkHttp request adapter with the provided authentication
101
+
* provider, parse node factory, and the serialization writer factory.
102
+
*
103
+
* @param authenticationProvider the authentication provider to use for
104
+
* authenticating requests.
105
+
* @param parseNodeFactory the parse node factory to use for parsing
106
+
* responses.
107
+
* @param serializationWriterFactory the serialization writer factory to use for
108
+
* serializing requests.
97
109
*/
98
110
@SuppressWarnings("LambdaLast")
99
111
publicOkHttpRequestAdapter(
@@ -104,11 +116,18 @@ public OkHttpRequestAdapter(
104
116
}
105
117
106
118
/**
107
-
* Instantiates a new OkHttp request adapter with the provided authentication provider, parse node factory, serialization writer factory, and the http client.
108
-
* @param authenticationProvider the authentication provider to use for authenticating requests.
109
-
* @param parseNodeFactory the parse node factory to use for parsing responses.
110
-
* @param serializationWriterFactory the serialization writer factory to use for serializing requests.
111
-
* @param client the http client to use for sending requests.
119
+
* Instantiates a new OkHttp request adapter with the provided authentication
120
+
* provider, parse node factory, serialization writer factory, and the http
121
+
* client.
122
+
*
123
+
* @param authenticationProvider the authentication provider to use for
124
+
* authenticating requests.
125
+
* @param parseNodeFactory the parse node factory to use for parsing
126
+
* responses.
127
+
* @param serializationWriterFactory the serialization writer factory to use for
128
+
* serializing requests.
129
+
* @param client the http client to use for sending
130
+
* requests.
112
131
*/
113
132
@SuppressWarnings("LambdaLast")
114
133
publicOkHttpRequestAdapter(
@@ -120,12 +139,20 @@ public OkHttpRequestAdapter(
120
139
}
121
140
122
141
/**
123
-
* Instantiates a new OkHttp request adapter with the provided authentication provider, parse node factory, serialization writer factory, http client and observability options.
124
-
* @param authenticationProvider the authentication provider to use for authenticating requests.
125
-
* @param parseNodeFactory the parse node factory to use for parsing responses.
126
-
* @param serializationWriterFactory the serialization writer factory to use for serializing requests.
127
-
* @param client the http client to use for sending requests.
128
-
* @param observabilityOptions the observability options to use for sending requests.
142
+
* Instantiates a new OkHttp request adapter with the provided authentication
0 commit comments