Java tutorial
/** * 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.ApiCallback; import com.oracle.bdcs.bdm.client.ApiClient; import com.oracle.bdcs.bdm.client.Configuration; import com.oracle.bdcs.bdm.client.ProgressResponseBody; import com.oracle.bdcs.bdm.client.model.*; import com.oracle.bdcs.bdm.client.ApiException; import com.oracle.bdcs.bdm.client.ApiResponse; import com.oracle.bdcs.bdm.client.Pair; import com.oracle.bdcs.bdm.client.ProgressRequestBody; import com.google.gson.reflect.TypeToken; import java.io.IOException; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class Files { private ApiClient apiClient; public Files() { this(Configuration.getDefaultApiClient()); } public Files(ApiClient apiClient) { this.apiClient = apiClient; } public ApiClient getApiClient() { return apiClient; } public void setApiClient(ApiClient apiClient) { this.apiClient = apiClient; } /* Build call for listFiles */ private com.squareup.okhttp.Call listFilesCall(String tenantName, FileSystemOperation body, String offset, String limit, Boolean startsWithMode, 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 listFiles(Async)"); } // verify the required parameter 'body' is set if (body == null) { throw new ApiException("Missing the required parameter 'body' when calling listFiles(Async)"); } // create path and map variables String localVarPath = "/v1.0/tenants/{tenantName}/files".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString())); List<Pair> localVarQueryParams = new ArrayList<Pair>(); if (offset != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "offset", offset)); if (limit != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "limit", limit)); if (startsWithMode != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "startsWithMode", startsWithMode)); 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 operation on files. * This is a POST operation where we specify the underlying command. For details see {@link FileSystemOperation}. Right now, we can list files, get information about specific file. FIXME Make this a get operation. * @param tenantName tenant name (required) * @param body command serialized form, see {@link FileSystemOperation} (required) * @param offset optional offset specification when paging requested (optional) * @param limit optional limit specification when paging requested (optional) * @param startsWithMode (optional) * @return FileCollectionResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public FileCollectionResponse listFiles(String tenantName, FileSystemOperation body, String offset, String limit, Boolean startsWithMode) throws ApiException { ApiResponse<FileCollectionResponse> resp = listFilesWithHttpInfo(tenantName, body, offset, limit, startsWithMode); return resp.getData(); } /** * Create operation on files. * This is a POST operation where we specify the underlying command. For details see {@link FileSystemOperation}. Right now, we can list files, get information about specific file. FIXME Make this a get operation. * @param tenantName tenant name (required) * @param body command serialized form, see {@link FileSystemOperation} (required) * @param offset optional offset specification when paging requested (optional) * @param limit optional limit specification when paging requested (optional) * @param startsWithMode (optional) * @return ApiResponse<FileCollectionResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<FileCollectionResponse> listFilesWithHttpInfo(String tenantName, FileSystemOperation body, String offset, String limit, Boolean startsWithMode) throws ApiException { com.squareup.okhttp.Call call = listFilesCall(tenantName, body, offset, limit, startsWithMode, null, null); Type localVarReturnType = new TypeToken<FileCollectionResponse>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Create operation on files. (asynchronously) * This is a POST operation where we specify the underlying command. For details see {@link FileSystemOperation}. Right now, we can list files, get information about specific file. FIXME Make this a get operation. * @param tenantName tenant name (required) * @param body command serialized form, see {@link FileSystemOperation} (required) * @param offset optional offset specification when paging requested (optional) * @param limit optional limit specification when paging requested (optional) * @param startsWithMode (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 listFilesAsync(String tenantName, FileSystemOperation body, String offset, String limit, Boolean startsWithMode, final ApiCallback<FileCollectionResponse> 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 = listFilesCall(tenantName, body, offset, limit, startsWithMode, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<FileCollectionResponse>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for resolveGlobs */ private com.squareup.okhttp.Call resolveGlobsCall(String tenantName, ResolveGlobs 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 resolveGlobs(Async)"); } // verify the required parameter 'body' is set if (body == null) { throw new ApiException("Missing the required parameter 'body' when calling resolveGlobs(Async)"); } // create path and map variables String localVarPath = "/v1.0/tenants/{tenantName}/files/resolve".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); } /** * Resolve files/globs internal endpoint. * * @param tenantName tenant name (required) * @param body input request, see {@link ResolveGlobs} (required) * @return RestResolvedFilesResponse * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RestResolvedFilesResponse resolveGlobs(String tenantName, ResolveGlobs body) throws ApiException { ApiResponse<RestResolvedFilesResponse> resp = resolveGlobsWithHttpInfo(tenantName, body); return resp.getData(); } /** * Resolve files/globs internal endpoint. * * @param tenantName tenant name (required) * @param body input request, see {@link ResolveGlobs} (required) * @return ApiResponse<RestResolvedFilesResponse> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RestResolvedFilesResponse> resolveGlobsWithHttpInfo(String tenantName, ResolveGlobs body) throws ApiException { com.squareup.okhttp.Call call = resolveGlobsCall(tenantName, body, null, null); Type localVarReturnType = new TypeToken<RestResolvedFilesResponse>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Resolve files/globs internal endpoint. (asynchronously) * * @param tenantName tenant name (required) * @param body input request, see {@link ResolveGlobs} (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 resolveGlobsAsync(String tenantName, ResolveGlobs body, final ApiCallback<RestResolvedFilesResponse> 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 = resolveGlobsCall(tenantName, body, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RestResolvedFilesResponse>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for storageAccountInformation */ private com.squareup.okhttp.Call storageAccountInformationCall(String tenantName, String providerName, 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 storageAccountInformation(Async)"); } // verify the required parameter 'providerName' is set if (providerName == null) { throw new ApiException( "Missing the required parameter 'providerName' when calling storageAccountInformation(Async)"); } // create path and map variables String localVarPath = "/v1.0/tenants/{tenantName}/files/accountInformation/{providerName}" .replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString())) .replaceAll("\\{" + "providerName" + "\\}", apiClient.escapeString(providerName.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); } /** * Resolve files/globs internal endpoint. * * @param tenantName tenant name (required) * @param providerName (required) * @return RestStorageAccountInformation * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RestStorageAccountInformation storageAccountInformation(String tenantName, String providerName) throws ApiException { ApiResponse<RestStorageAccountInformation> resp = storageAccountInformationWithHttpInfo(tenantName, providerName); return resp.getData(); } /** * Resolve files/globs internal endpoint. * * @param tenantName tenant name (required) * @param providerName (required) * @return ApiResponse<RestStorageAccountInformation> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RestStorageAccountInformation> storageAccountInformationWithHttpInfo(String tenantName, String providerName) throws ApiException { com.squareup.okhttp.Call call = storageAccountInformationCall(tenantName, providerName, null, null); Type localVarReturnType = new TypeToken<RestStorageAccountInformation>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Resolve files/globs internal endpoint. (asynchronously) * * @param tenantName tenant name (required) * @param providerName (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 storageAccountInformationAsync(String tenantName, String providerName, final ApiCallback<RestStorageAccountInformation> 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 = storageAccountInformationCall(tenantName, providerName, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RestStorageAccountInformation>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for storageContentSummary */ private com.squareup.okhttp.Call storageContentSummaryCall(String providerName, String tenantName, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'providerName' is set if (providerName == null) { throw new ApiException( "Missing the required parameter 'providerName' when calling storageContentSummary(Async)"); } // verify the required parameter 'tenantName' is set if (tenantName == null) { throw new ApiException( "Missing the required parameter 'tenantName' when calling storageContentSummary(Async)"); } // create path and map variables String localVarPath = "/v1.0/tenants/{tenantName}/files/storageSummary/{providerName}" .replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "providerName" + "\\}", apiClient.escapeString(providerName.toString())) .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); } }