abtlibrary.utils.as24ApiClient.api.DealerGroupsApi.java Source code

Java tutorial

Introduction

Here is the source code for abtlibrary.utils.as24ApiClient.api.DealerGroupsApi.java

Source

/**
 * 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.ResponseMessageListDealerGroup;
import abtlibrary.utils.as24ApiClient.model.ResponseMessageDealerGroup;
import abtlibrary.utils.as24ApiClient.model.ResponseMessageListMake;
import abtlibrary.utils.as24ApiClient.model.ResponseMessageListModel;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class DealerGroupsApi {
    private ApiClient apiClient;

    public DealerGroupsApi() {
        this(Configuration.getDefaultApiClient());
    }

    public DealerGroupsApi(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    public ApiClient getApiClient() {
        return apiClient;
    }

    public void setApiClient(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    /* Build call for gETpublicV41Dealergroups */
    private com.squareup.okhttp.Call gETpublicV41DealergroupsCall(
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // create path and map variables
        String localVarPath = "/public/v4.1/dealergroups".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 ResponseMessageListDealerGroup
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ResponseMessageListDealerGroup gETpublicV41Dealergroups() throws ApiException {
        ApiResponse<ResponseMessageListDealerGroup> resp = gETpublicV41DealergroupsWithHttpInfo();
        return resp.getData();
    }

    /**
     * 
     * 
     * @return ApiResponse&lt;ResponseMessageListDealerGroup&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<ResponseMessageListDealerGroup> gETpublicV41DealergroupsWithHttpInfo() throws ApiException {
        com.squareup.okhttp.Call call = gETpublicV41DealergroupsCall(null, null);
        Type localVarReturnType = new TypeToken<ResponseMessageListDealerGroup>() {
        }.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 gETpublicV41DealergroupsAsync(
            final ApiCallback<ResponseMessageListDealerGroup> 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 = gETpublicV41DealergroupsCall(progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<ResponseMessageListDealerGroup>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for gETpublicV41DealergroupsDealergroupid */
    private com.squareup.okhttp.Call gETpublicV41DealergroupsDealergroupidCall(Integer dealergroupId,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'dealergroupId' is set
        if (dealergroupId == null) {
            throw new ApiException(
                    "Missing the required parameter 'dealergroupId' when calling gETpublicV41DealergroupsDealergroupid(Async)");
        }

        // create path and map variables
        String localVarPath = "/public/v4.1/dealergroups/{dealergroupId}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "dealergroupId" + "\\}", apiClient.escapeString(dealergroupId.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 dealergroupId  (required)
     * @return ResponseMessageDealerGroup
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ResponseMessageDealerGroup gETpublicV41DealergroupsDealergroupid(Integer dealergroupId)
            throws ApiException {
        ApiResponse<ResponseMessageDealerGroup> resp = gETpublicV41DealergroupsDealergroupidWithHttpInfo(
                dealergroupId);
        return resp.getData();
    }

    /**
     * 
     * 
     * @param dealergroupId  (required)
     * @return ApiResponse&lt;ResponseMessageDealerGroup&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<ResponseMessageDealerGroup> gETpublicV41DealergroupsDealergroupidWithHttpInfo(
            Integer dealergroupId) throws ApiException {
        com.squareup.okhttp.Call call = gETpublicV41DealergroupsDealergroupidCall(dealergroupId, null, null);
        Type localVarReturnType = new TypeToken<ResponseMessageDealerGroup>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     *  (asynchronously)
     * 
     * @param dealergroupId  (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 gETpublicV41DealergroupsDealergroupidAsync(Integer dealergroupId,
            final ApiCallback<ResponseMessageDealerGroup> 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 = gETpublicV41DealergroupsDealergroupidCall(dealergroupId, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<ResponseMessageDealerGroup>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for gETpublicV41DealergroupsDealergroupidMakes */
    private com.squareup.okhttp.Call gETpublicV41DealergroupsDealergroupidMakesCall(Integer dealergroupId,
            String filter, final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'dealergroupId' is set
        if (dealergroupId == null) {
            throw new ApiException(
                    "Missing the required parameter 'dealergroupId' when calling gETpublicV41DealergroupsDealergroupidMakes(Async)");
        }

        // verify the required parameter 'filter' is set
        if (filter == null) {
            throw new ApiException(
                    "Missing the required parameter 'filter' when calling gETpublicV41DealergroupsDealergroupidMakes(Async)");
        }

        // create path and map variables
        String localVarPath = "/public/v4.1/dealergroups/{dealergroupId}/makes".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "dealergroupId" + "\\}", apiClient.escapeString(dealergroupId.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();
        if (filter != null)
            localVarQueryParams.addAll(apiClient.parameterToPairs("", "filter", filter));

        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 dealergroupId  (required)
     * @param filter  (required)
     * @return ResponseMessageListMake
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ResponseMessageListMake gETpublicV41DealergroupsDealergroupidMakes(Integer dealergroupId, String filter)
            throws ApiException {
        ApiResponse<ResponseMessageListMake> resp = gETpublicV41DealergroupsDealergroupidMakesWithHttpInfo(
                dealergroupId, filter);
        return resp.getData();
    }

    /**
     * 
     * 
     * @param dealergroupId  (required)
     * @param filter  (required)
     * @return ApiResponse&lt;ResponseMessageListMake&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<ResponseMessageListMake> gETpublicV41DealergroupsDealergroupidMakesWithHttpInfo(
            Integer dealergroupId, String filter) throws ApiException {
        com.squareup.okhttp.Call call = gETpublicV41DealergroupsDealergroupidMakesCall(dealergroupId, filter, null,
                null);
        Type localVarReturnType = new TypeToken<ResponseMessageListMake>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     *  (asynchronously)
     * 
     * @param dealergroupId  (required)
     * @param filter  (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 gETpublicV41DealergroupsDealergroupidMakesAsync(Integer dealergroupId,
            String filter, 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 = gETpublicV41DealergroupsDealergroupidMakesCall(dealergroupId, filter,
                progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<ResponseMessageListMake>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for gETpublicV41DealergroupsDealergroupidModels */
    private com.squareup.okhttp.Call gETpublicV41DealergroupsDealergroupidModelsCall(Integer dealergroupId,
            String filter, final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'dealergroupId' is set
        if (dealergroupId == null) {
            throw new ApiException(
                    "Missing the required parameter 'dealergroupId' when calling gETpublicV41DealergroupsDealergroupidModels(Async)");
        }

        // verify the required parameter 'filter' is set
        if (filter == null) {
            throw new ApiException(
                    "Missing the required parameter 'filter' when calling gETpublicV41DealergroupsDealergroupidModels(Async)");
        }

        // create path and map variables
        String localVarPath = "/public/v4.1/dealergroups/{dealergroupId}/models".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "dealergroupId" + "\\}", apiClient.escapeString(dealergroupId.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();
        if (filter != null)
            localVarQueryParams.addAll(apiClient.parameterToPairs("", "filter", filter));

        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 dealergroupId  (required)
     * @param filter  (required)
     * @return ResponseMessageListModel
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ResponseMessageListModel gETpublicV41DealergroupsDealergroupidModels(Integer dealergroupId,
            String filter) throws ApiException {
        ApiResponse<ResponseMessageListModel> resp = gETpublicV41DealergroupsDealergroupidModelsWithHttpInfo(
                dealergroupId, filter);
        return resp.getData();
    }

    /**
     * 
     * 
     * @param dealergroupId  (required)
     * @param filter  (required)
     * @return ApiResponse&lt;ResponseMessageListModel&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<ResponseMessageListModel> gETpublicV41DealergroupsDealergroupidModelsWithHttpInfo(
            Integer dealergroupId, String filter) throws ApiException {
        com.squareup.okhttp.Call call = gETpublicV41DealergroupsDealergroupidModelsCall(dealergroupId, filter, null,
                null);
        Type localVarReturnType = new TypeToken<ResponseMessageListModel>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     *  (asynchronously)
     * 
     * @param dealergroupId  (required)
     * @param filter  (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 gETpublicV41DealergroupsDealergroupidModelsAsync(Integer dealergroupId,
            String filter, 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 = gETpublicV41DealergroupsDealergroupidModelsCall(dealergroupId, filter,
                progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<ResponseMessageListModel>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }
}