@@ -86,8 +86,8 @@ public HttpResponse apiKeysCreateApiKeyForHttpResponse(CreateApiKeyVM createApiK
86
86
String localVarUrl = uriBuilder .build ().toString ();
87
87
GenericUrl genericUrl = new GenericUrl (localVarUrl );
88
88
89
- HttpContent aContent = apiClient .new JacksonJsonHttpContent (createApiKeyVM );
90
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , aContent ).execute ();
89
+ HttpContent content = apiClient .new JacksonJsonHttpContent (createApiKeyVM );
90
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content ).execute ();
91
91
}
92
92
93
93
public HttpResponse apiKeysCreateApiKeyForHttpResponse (java .io .InputStream createApiKeyVM , String mediaType ) throws IOException {
@@ -100,10 +100,10 @@ public HttpResponse apiKeysCreateApiKeyForHttpResponse(java.io.InputStream creat
100
100
String localVarUrl = uriBuilder .build ().toString ();
101
101
GenericUrl genericUrl = new GenericUrl (localVarUrl );
102
102
103
- HttpContent aContent = createApiKeyVM == null ?
103
+ HttpContent content = createApiKeyVM == null ?
104
104
apiClient .new JacksonJsonHttpContent (null ) :
105
105
new InputStreamContent (mediaType == null ? Json .MEDIA_TYPE : mediaType , createApiKeyVM );
106
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , aContent ).execute ();
106
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content ).execute ();
107
107
}
108
108
109
109
public HttpResponse apiKeysCreateApiKeyForHttpResponse (CreateApiKeyVM createApiKeyVM , Map <String , Object > params ) throws IOException {
@@ -134,8 +134,8 @@ public HttpResponse apiKeysCreateApiKeyForHttpResponse(CreateApiKeyVM createApiK
134
134
String localVarUrl = uriBuilder .build ().toString ();
135
135
GenericUrl genericUrl = new GenericUrl (localVarUrl );
136
136
137
- HttpContent aContent = apiClient .new JacksonJsonHttpContent (createApiKeyVM );
138
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , aContent ).execute ();
137
+ HttpContent content = apiClient .new JacksonJsonHttpContent (createApiKeyVM );
138
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .POST , genericUrl , content ).execute ();
139
139
}
140
140
141
141
@@ -178,8 +178,8 @@ public HttpResponse apiKeysDeleteApiKeyForHttpResponse(DeleteApiKeyVM deleteApiK
178
178
String localVarUrl = uriBuilder .build ().toString ();
179
179
GenericUrl genericUrl = new GenericUrl (localVarUrl );
180
180
181
- HttpContent aContent = null ;
182
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , aContent ).execute ();
181
+ HttpContent content = null ;
182
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , content ).execute ();
183
183
}
184
184
185
185
public HttpResponse apiKeysDeleteApiKeyForHttpResponse (java .io .InputStream deleteApiKeyVM , String mediaType ) throws IOException {
@@ -192,10 +192,10 @@ public HttpResponse apiKeysDeleteApiKeyForHttpResponse(java.io.InputStream delet
192
192
String localVarUrl = uriBuilder .build ().toString ();
193
193
GenericUrl genericUrl = new GenericUrl (localVarUrl );
194
194
195
- HttpContent aContent = deleteApiKeyVM == null ?
195
+ HttpContent content = deleteApiKeyVM == null ?
196
196
apiClient .new JacksonJsonHttpContent (null ) :
197
197
new InputStreamContent (mediaType == null ? Json .MEDIA_TYPE : mediaType , deleteApiKeyVM );
198
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , aContent ).execute ();
198
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , content ).execute ();
199
199
}
200
200
201
201
public HttpResponse apiKeysDeleteApiKeyForHttpResponse (DeleteApiKeyVM deleteApiKeyVM , Map <String , Object > params ) throws IOException {
@@ -226,8 +226,8 @@ public HttpResponse apiKeysDeleteApiKeyForHttpResponse(DeleteApiKeyVM deleteApiK
226
226
String localVarUrl = uriBuilder .build ().toString ();
227
227
GenericUrl genericUrl = new GenericUrl (localVarUrl );
228
228
229
- HttpContent aContent = null ;
230
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , aContent ).execute ();
229
+ HttpContent content = null ;
230
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .DELETE , genericUrl , content ).execute ();
231
231
}
232
232
233
233
@@ -269,8 +269,8 @@ public HttpResponse apiKeysGetApiKeysForHttpResponse() throws IOException {
269
269
String localVarUrl = uriBuilder .build ().toString ();
270
270
GenericUrl genericUrl = new GenericUrl (localVarUrl );
271
271
272
- HttpContent aContent = null ;
273
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .GET , genericUrl , aContent ).execute ();
272
+ HttpContent content = null ;
273
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .GET , genericUrl , content ).execute ();
274
274
}
275
275
276
276
public HttpResponse apiKeysGetApiKeysForHttpResponse (Map <String , Object > params ) throws IOException {
@@ -298,8 +298,8 @@ public HttpResponse apiKeysGetApiKeysForHttpResponse(Map<String, Object> params)
298
298
String localVarUrl = uriBuilder .build ().toString ();
299
299
GenericUrl genericUrl = new GenericUrl (localVarUrl );
300
300
301
- HttpContent aContent = null ;
302
- return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .GET , genericUrl , aContent ).execute ();
301
+ HttpContent content = null ;
302
+ return apiClient .getHttpRequestFactory ().buildRequest (HttpMethods .GET , genericUrl , content ).execute ();
303
303
}
304
304
305
305
0 commit comments