Java tutorial
/** * AS24 API v4.1 * No descripton provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v4.1 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package abtlibrary.utils.as24ApiClient.api; import abtlibrary.utils.as24ApiClient.ApiCallback; import abtlibrary.utils.as24ApiClient.ApiClient; import abtlibrary.utils.as24ApiClient.ApiException; import abtlibrary.utils.as24ApiClient.ApiResponse; import abtlibrary.utils.as24ApiClient.Configuration; import abtlibrary.utils.as24ApiClient.Pair; import abtlibrary.utils.as24ApiClient.ProgressRequestBody; import abtlibrary.utils.as24ApiClient.ProgressResponseBody; import com.google.gson.reflect.TypeToken; import java.io.IOException; import abtlibrary.utils.as24ApiClient.model.ResponseMessageMasterData; import abtlibrary.utils.as24ApiClient.model.ResponseMessageListMake; import abtlibrary.utils.as24ApiClient.model.ResponseMessageListModel; import abtlibrary.utils.as24ApiClient.model.ResponseMessageDictionaryStringObject; import abtlibrary.utils.as24ApiClient.model.ResponseMessageCollectionListLocation; import abtlibrary.utils.as24ApiClient.model.ResponseMessageTranslations; import abtlibrary.utils.as24ApiClient.model.ResponseMessageListVehicleType; import abtlibrary.utils.as24ApiClient.model.ResponseMessageMetaData; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class MasterDataApi { private ApiClient apiClient; public MasterDataApi() { this(Configuration.getDefaultApiClient()); } public MasterDataApi(ApiClient apiClient) { this.apiClient = apiClient; } public ApiClient getApiClient() { return apiClient; } public void setApiClient(ApiClient apiClient) { this.apiClient = apiClient; } /* Build call for gETpublicV41Masterdata */ private com.squareup.okhttp.Call gETpublicV41MasterdataCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageMasterData * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageMasterData gETpublicV41Masterdata() throws ApiException { ApiResponse<ResponseMessageMasterData> resp = gETpublicV41MasterdataWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageMasterData> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageMasterData> gETpublicV41MasterdataWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageMasterData>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataAsync( final ApiCallback<ResponseMessageMasterData> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageMasterData>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataMakes */ private com.squareup.okhttp.Call gETpublicV41MasterdataMakesCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/makes".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageListMake * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageListMake gETpublicV41MasterdataMakes() throws ApiException { ApiResponse<ResponseMessageListMake> resp = gETpublicV41MasterdataMakesWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageListMake> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageListMake> gETpublicV41MasterdataMakesWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataMakesCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageListMake>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataMakesAsync( final ApiCallback<ResponseMessageListMake> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataMakesCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageListMake>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataModels */ private com.squareup.okhttp.Call gETpublicV41MasterdataModelsCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/models".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageListModel * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageListModel gETpublicV41MasterdataModels() throws ApiException { ApiResponse<ResponseMessageListModel> resp = gETpublicV41MasterdataModelsWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageListModel> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageListModel> gETpublicV41MasterdataModelsWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataModelsCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageListModel>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataModelsAsync( final ApiCallback<ResponseMessageListModel> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataModelsCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageListModel>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataSettings */ private com.squareup.okhttp.Call gETpublicV41MasterdataSettingsCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/settings".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageDictionaryStringObject * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageDictionaryStringObject gETpublicV41MasterdataSettings() throws ApiException { ApiResponse<ResponseMessageDictionaryStringObject> resp = gETpublicV41MasterdataSettingsWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageDictionaryStringObject> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageDictionaryStringObject> gETpublicV41MasterdataSettingsWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataSettingsCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageDictionaryStringObject>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataSettingsAsync( final ApiCallback<ResponseMessageDictionaryStringObject> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataSettingsCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageDictionaryStringObject>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataSuggestlocations */ private com.squareup.okhttp.Call gETpublicV41MasterdataSuggestlocationsCall(Integer take, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/suggestlocations".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); if (take != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "take", take)); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @param take (optional) * @return ResponseMessageCollectionListLocation * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageCollectionListLocation gETpublicV41MasterdataSuggestlocations(Integer take) throws ApiException { ApiResponse<ResponseMessageCollectionListLocation> resp = gETpublicV41MasterdataSuggestlocationsWithHttpInfo( take); return resp.getData(); } /** * * * @param take (optional) * @return ApiResponse<ResponseMessageCollectionListLocation> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageCollectionListLocation> gETpublicV41MasterdataSuggestlocationsWithHttpInfo( Integer take) throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataSuggestlocationsCall(take, null, null); Type localVarReturnType = new TypeToken<ResponseMessageCollectionListLocation>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param take (optional) * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataSuggestlocationsAsync(Integer take, final ApiCallback<ResponseMessageCollectionListLocation> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataSuggestlocationsCall(take, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageCollectionListLocation>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataTranslations */ private com.squareup.okhttp.Call gETpublicV41MasterdataTranslationsCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/translations".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageTranslations * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageTranslations gETpublicV41MasterdataTranslations() throws ApiException { ApiResponse<ResponseMessageTranslations> resp = gETpublicV41MasterdataTranslationsWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageTranslations> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageTranslations> gETpublicV41MasterdataTranslationsWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataTranslationsCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageTranslations>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataTranslationsAsync( final ApiCallback<ResponseMessageTranslations> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataTranslationsCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageTranslations>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41MasterdataVehicletypes */ private com.squareup.okhttp.Call gETpublicV41MasterdataVehicletypesCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/vehicletypes".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageListVehicleType * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageListVehicleType gETpublicV41MasterdataVehicletypes() throws ApiException { ApiResponse<ResponseMessageListVehicleType> resp = gETpublicV41MasterdataVehicletypesWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageListVehicleType> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageListVehicleType> gETpublicV41MasterdataVehicletypesWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = gETpublicV41MasterdataVehicletypesCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageListVehicleType>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call gETpublicV41MasterdataVehicletypesAsync( final ApiCallback<ResponseMessageListVehicleType> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = gETpublicV41MasterdataVehicletypesCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageListVehicleType>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for hEADpublicV41MasterdataMetadata */ private com.squareup.okhttp.Call hEADpublicV41MasterdataMetadataCall( final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // create path and map variables String localVarPath = "/public/v4.1/masterdata/metadata".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/json", "text/json" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { }; final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes); localVarHeaderParams.put("Content-Type", localVarContentType); if (progressListener != null) { apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() { @Override public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain) throws IOException { com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request()); return originalResponse.newBuilder() .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build(); } }); } String[] localVarAuthNames = new String[] { "oauth2" }; return apiClient.buildCall(localVarPath, "HEAD", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @return ResponseMessageMetaData * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageMetaData hEADpublicV41MasterdataMetadata() throws ApiException { ApiResponse<ResponseMessageMetaData> resp = hEADpublicV41MasterdataMetadataWithHttpInfo(); return resp.getData(); } /** * * * @return ApiResponse<ResponseMessageMetaData> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageMetaData> hEADpublicV41MasterdataMetadataWithHttpInfo() throws ApiException { com.squareup.okhttp.Call call = hEADpublicV41MasterdataMetadataCall(null, null); Type localVarReturnType = new TypeToken<ResponseMessageMetaData>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param callback The callback to be executed when the API call finishes * @return The request call * @throws ApiException If fail to process the API call, e.g. serializing the request body object */ public com.squareup.okhttp.Call hEADpublicV41MasterdataMetadataAsync( final ApiCallback<ResponseMessageMetaData> callback) throws ApiException { ProgressResponseBody.ProgressListener progressListener = null; ProgressRequestBody.ProgressRequestListener progressRequestListener = null; if (callback != null) { progressListener = new ProgressResponseBody.ProgressListener() { @Override public void update(long bytesRead, long contentLength, boolean done) { callback.onDownloadProgress(bytesRead, contentLength, done); } }; progressRequestListener = new ProgressRequestBody.ProgressRequestListener() { @Override public void onRequestProgress(long bytesWritten, long contentLength, boolean done) { callback.onUploadProgress(bytesWritten, contentLength, done); } }; } com.squareup.okhttp.Call call = hEADpublicV41MasterdataMetadataCall(progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageMetaData>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } }