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.ResponseMessageSharingVehicle; import abtlibrary.utils.as24ApiClient.model.ResponseMessageSharingObject; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class SharingApi { private ApiClient apiClient; public SharingApi() { this(Configuration.getDefaultApiClient()); } public SharingApi(ApiClient apiClient) { this.apiClient = apiClient; } public ApiClient getApiClient() { return apiClient; } public void setApiClient(ApiClient apiClient) { this.apiClient = apiClient; } /* Build call for gETpublicV41SharingVehiclesharingmessagesVehicleid */ private com.squareup.okhttp.Call gETpublicV41SharingVehiclesharingmessagesVehicleidCall(Integer sharingType, Integer vehicleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'sharingType' is set if (sharingType == null) { throw new ApiException( "Missing the required parameter 'sharingType' when calling gETpublicV41SharingVehiclesharingmessagesVehicleid(Async)"); } // verify the required parameter 'vehicleId' is set if (vehicleId == null) { throw new ApiException( "Missing the required parameter 'vehicleId' when calling gETpublicV41SharingVehiclesharingmessagesVehicleid(Async)"); } // create path and map variables String localVarPath = "/public/v4.1/sharing/vehiclesharingmessages/{vehicleId}" .replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "vehicleId" + "\\}", apiClient.escapeString(vehicleId.toString())); List<Pair> localVarQueryParams = new ArrayList<Pair>(); if (sharingType != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "sharingType", sharingType)); 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 sharingType (required) * @param vehicleId (required) * @return ResponseMessageSharingVehicle * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageSharingVehicle gETpublicV41SharingVehiclesharingmessagesVehicleid(Integer sharingType, Integer vehicleId) throws ApiException { ApiResponse<ResponseMessageSharingVehicle> resp = gETpublicV41SharingVehiclesharingmessagesVehicleidWithHttpInfo( sharingType, vehicleId); return resp.getData(); } /** * * * @param sharingType (required) * @param vehicleId (required) * @return ApiResponse<ResponseMessageSharingVehicle> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageSharingVehicle> gETpublicV41SharingVehiclesharingmessagesVehicleidWithHttpInfo( Integer sharingType, Integer vehicleId) throws ApiException { com.squareup.okhttp.Call call = gETpublicV41SharingVehiclesharingmessagesVehicleidCall(sharingType, vehicleId, null, null); Type localVarReturnType = new TypeToken<ResponseMessageSharingVehicle>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param sharingType (required) * @param vehicleId (required) * @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 gETpublicV41SharingVehiclesharingmessagesVehicleidAsync(Integer sharingType, Integer vehicleId, final ApiCallback<ResponseMessageSharingVehicle> 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 = gETpublicV41SharingVehiclesharingmessagesVehicleidCall(sharingType, vehicleId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageSharingVehicle>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for gETpublicV41SharingVehiclesharingoptionsVehicleid */ private com.squareup.okhttp.Call gETpublicV41SharingVehiclesharingoptionsVehicleidCall(Integer vehicleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'vehicleId' is set if (vehicleId == null) { throw new ApiException( "Missing the required parameter 'vehicleId' when calling gETpublicV41SharingVehiclesharingoptionsVehicleid(Async)"); } // create path and map variables String localVarPath = "/public/v4.1/sharing/vehiclesharingoptions/{vehicleId}" .replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "vehicleId" + "\\}", apiClient.escapeString(vehicleId.toString())); 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); } /** * * * @param vehicleId (required) * @return ResponseMessageSharingObject * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageSharingObject gETpublicV41SharingVehiclesharingoptionsVehicleid(Integer vehicleId) throws ApiException { ApiResponse<ResponseMessageSharingObject> resp = gETpublicV41SharingVehiclesharingoptionsVehicleidWithHttpInfo( vehicleId); return resp.getData(); } /** * * * @param vehicleId (required) * @return ApiResponse<ResponseMessageSharingObject> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageSharingObject> gETpublicV41SharingVehiclesharingoptionsVehicleidWithHttpInfo( Integer vehicleId) throws ApiException { com.squareup.okhttp.Call call = gETpublicV41SharingVehiclesharingoptionsVehicleidCall(vehicleId, null, null); Type localVarReturnType = new TypeToken<ResponseMessageSharingObject>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param vehicleId (required) * @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 gETpublicV41SharingVehiclesharingoptionsVehicleidAsync(Integer vehicleId, final ApiCallback<ResponseMessageSharingObject> 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 = gETpublicV41SharingVehiclesharingoptionsVehicleidCall(vehicleId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageSharingObject>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for pOSTpublicV41SharingVehiclesharingmessagesVehicleid */ private com.squareup.okhttp.Call pOSTpublicV41SharingVehiclesharingmessagesVehicleidCall(Integer sharingType, Integer vehicleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'sharingType' is set if (sharingType == null) { throw new ApiException( "Missing the required parameter 'sharingType' when calling pOSTpublicV41SharingVehiclesharingmessagesVehicleid(Async)"); } // verify the required parameter 'vehicleId' is set if (vehicleId == null) { throw new ApiException( "Missing the required parameter 'vehicleId' when calling pOSTpublicV41SharingVehiclesharingmessagesVehicleid(Async)"); } // create path and map variables String localVarPath = "/public/v4.1/sharing/vehiclesharingmessages/{vehicleId}" .replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "vehicleId" + "\\}", apiClient.escapeString(vehicleId.toString())); List<Pair> localVarQueryParams = new ArrayList<Pair>(); if (sharingType != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "sharingType", sharingType)); 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, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * * * @param sharingType (required) * @param vehicleId (required) * @return ResponseMessageSharingVehicle * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ResponseMessageSharingVehicle pOSTpublicV41SharingVehiclesharingmessagesVehicleid(Integer sharingType, Integer vehicleId) throws ApiException { ApiResponse<ResponseMessageSharingVehicle> resp = pOSTpublicV41SharingVehiclesharingmessagesVehicleidWithHttpInfo( sharingType, vehicleId); return resp.getData(); } /** * * * @param sharingType (required) * @param vehicleId (required) * @return ApiResponse<ResponseMessageSharingVehicle> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<ResponseMessageSharingVehicle> pOSTpublicV41SharingVehiclesharingmessagesVehicleidWithHttpInfo( Integer sharingType, Integer vehicleId) throws ApiException { com.squareup.okhttp.Call call = pOSTpublicV41SharingVehiclesharingmessagesVehicleidCall(sharingType, vehicleId, null, null); Type localVarReturnType = new TypeToken<ResponseMessageSharingVehicle>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * (asynchronously) * * @param sharingType (required) * @param vehicleId (required) * @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 pOSTpublicV41SharingVehiclesharingmessagesVehicleidAsync(Integer sharingType, Integer vehicleId, final ApiCallback<ResponseMessageSharingVehicle> 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 = pOSTpublicV41SharingVehiclesharingmessagesVehicleidCall(sharingType, vehicleId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<ResponseMessageSharingVehicle>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } }