com.oracle.bdcs.bdm.client.api.Tenants.java Source code

Java tutorial

Introduction

Here is the source code for com.oracle.bdcs.bdm.client.api.Tenants.java

Source

/**
 * SDK for Bigdata Manager
 * Bigdata manager java SDK
 *
 * OpenAPI spec version: 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 com.oracle.bdcs.bdm.client.api;

import com.oracle.bdcs.bdm.client.model.RestAvailableRolesReponse;
import com.oracle.bdcs.bdm.client.model.RestTenantResponse;
import com.oracle.bdcs.bdm.client.model.Role;
import com.oracle.bdcs.bdm.client.ApiCallback;
import com.oracle.bdcs.bdm.client.ApiClient;
import com.oracle.bdcs.bdm.client.ApiException;
import com.oracle.bdcs.bdm.client.ApiResponse;
import com.oracle.bdcs.bdm.client.Configuration;
import com.oracle.bdcs.bdm.client.Pair;
import com.oracle.bdcs.bdm.client.ProgressRequestBody;
import com.oracle.bdcs.bdm.client.ProgressResponseBody;

import com.google.gson.reflect.TypeToken;

import java.io.IOException;

import com.oracle.bdcs.bdm.client.model.Tenant;

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

public class Tenants {
    private ApiClient apiClient;

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

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

    public ApiClient getApiClient() {
        return apiClient;
    }

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

    /* Build call for addRole */
    private com.squareup.okhttp.Call addRoleCall(String tenantName, Role body,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = body;

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

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

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/roles".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.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 = {

        };
        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[] {};
        return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarPostBody,
                localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Add roles for given tenant.
     * 
     * @param tenantName tenant we want to add the role (required)
     * @param body role to add, see {@link Role} (required)
     * @return RestTenantResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestTenantResponse addRole(String tenantName, Role body) throws ApiException {
        ApiResponse<RestTenantResponse> resp = addRoleWithHttpInfo(tenantName, body);
        return resp.getData();
    }

    /**
     * Add roles for given tenant.
     * 
     * @param tenantName tenant we want to add the role (required)
     * @param body role to add, see {@link Role} (required)
     * @return ApiResponse&lt;RestTenantResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestTenantResponse> addRoleWithHttpInfo(String tenantName, Role body) throws ApiException {
        com.squareup.okhttp.Call call = addRoleCall(tenantName, body, null, null);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Add roles for given tenant. (asynchronously)
     * 
     * @param tenantName tenant we want to add the role (required)
     * @param body role to add, see {@link Role} (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 addRoleAsync(String tenantName, Role body,
            final ApiCallback<RestTenantResponse> 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 = addRoleCall(tenantName, body, progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

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

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

        // create path and map variables
        String localVarPath = "/v1.0/tenants".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 = {

        };
        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[] {};
        return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarPostBody,
                localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Create tenant.
     * 
     * @param body body for tenant creation, see {@link Tenant} (required)
     * @return RestTenantResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestTenantResponse createTenant(Tenant body) throws ApiException {
        ApiResponse<RestTenantResponse> resp = createTenantWithHttpInfo(body);
        return resp.getData();
    }

    /**
     * Create tenant.
     * 
     * @param body body for tenant creation, see {@link Tenant} (required)
     * @return ApiResponse&lt;RestTenantResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestTenantResponse> createTenantWithHttpInfo(Tenant body) throws ApiException {
        com.squareup.okhttp.Call call = createTenantCall(body, null, null);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Create tenant. (asynchronously)
     * 
     * @param body body for tenant creation, see {@link Tenant} (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 createTenantAsync(Tenant body, final ApiCallback<RestTenantResponse> 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 = createTenantCall(body, progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

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

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

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.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 = {

        };
        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[] {};
        return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Get tenant information.
     * 
     * @param tenantName tenant to retrieve (required)
     * @return RestTenantResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestTenantResponse getTenant(String tenantName) throws ApiException {
        ApiResponse<RestTenantResponse> resp = getTenantWithHttpInfo(tenantName);
        return resp.getData();
    }

    /**
     * Get tenant information.
     * 
     * @param tenantName tenant to retrieve (required)
     * @return ApiResponse&lt;RestTenantResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestTenantResponse> getTenantWithHttpInfo(String tenantName) throws ApiException {
        com.squareup.okhttp.Call call = getTenantCall(tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Get tenant information. (asynchronously)
     * 
     * @param tenantName tenant to retrieve (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 getTenantAsync(String tenantName,
            final ApiCallback<RestTenantResponse> 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 = getTenantCall(tenantName, progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

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

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

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/roles".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.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 = {

        };
        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[] {};
        return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * List all roles per tenant
     * 
     * @param tenantName tenant we want to add the role (required)
     * @return RestAvailableRolesReponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestAvailableRolesReponse listRoles(String tenantName) throws ApiException {
        ApiResponse<RestAvailableRolesReponse> resp = listRolesWithHttpInfo(tenantName);
        return resp.getData();
    }

    /**
     * List all roles per tenant
     * 
     * @param tenantName tenant we want to add the role (required)
     * @return ApiResponse&lt;RestAvailableRolesReponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestAvailableRolesReponse> listRolesWithHttpInfo(String tenantName) throws ApiException {
        com.squareup.okhttp.Call call = listRolesCall(tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestAvailableRolesReponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * List all roles per tenant (asynchronously)
     * 
     * @param tenantName tenant we want to add the role (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 listRolesAsync(String tenantName,
            final ApiCallback<RestAvailableRolesReponse> 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 = listRolesCall(tenantName, progressListener, progressRequestListener);
        Type localVarReturnType = new TypeToken<RestAvailableRolesReponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for updateTenant */
    private com.squareup.okhttp.Call updateTenantCall(String tenantName, Tenant body,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = body;

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

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

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.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 = {

        };
        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[] {};
        return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Update tenant (rename).
     * 
     * @param tenantName tenant to update information (required)
     * @param body new tenant data, see {@link Tenant} (required)
     * @return RestTenantResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestTenantResponse updateTenant(String tenantName, Tenant body) throws ApiException {
        ApiResponse<RestTenantResponse> resp = updateTenantWithHttpInfo(tenantName, body);
        return resp.getData();
    }

    /**
     * Update tenant (rename).
     * 
     * @param tenantName tenant to update information (required)
     * @param body new tenant data, see {@link Tenant} (required)
     * @return ApiResponse&lt;RestTenantResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestTenantResponse> updateTenantWithHttpInfo(String tenantName, Tenant body)
            throws ApiException {
        com.squareup.okhttp.Call call = updateTenantCall(tenantName, body, null, null);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Update tenant (rename). (asynchronously)
     * 
     * @param tenantName tenant to update information (required)
     * @param body new tenant data, see {@link Tenant} (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 updateTenantAsync(String tenantName, Tenant body,
            final ApiCallback<RestTenantResponse> 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 = updateTenantCall(tenantName, body, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<RestTenantResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }
}