Java tutorial
/** * ARTIK Cloud API * No descripton provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: 2.0.0 * * * 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 cloud.artik.api; import cloud.artik.client.ApiCallback; import cloud.artik.client.ApiClient; import cloud.artik.client.ApiException; import cloud.artik.client.ApiResponse; import cloud.artik.client.Configuration; import cloud.artik.client.Pair; import cloud.artik.client.ProgressRequestBody; import cloud.artik.client.ProgressResponseBody; import com.google.gson.reflect.TypeToken; import java.io.IOException; import cloud.artik.model.RuleEnvelope; import cloud.artik.model.RuleCreationInfo; import cloud.artik.model.RuleUpdateInfo; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class RulesApi { private ApiClient apiClient; public RulesApi() { this(Configuration.getDefaultApiClient()); } public RulesApi(ApiClient apiClient) { this.apiClient = apiClient; } public ApiClient getApiClient() { return apiClient; } public void setApiClient(ApiClient apiClient) { this.apiClient = apiClient; } /* Build call for createRule */ private com.squareup.okhttp.Call createRuleCall(RuleCreationInfo ruleInfo, String userId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = ruleInfo; // verify the required parameter 'ruleInfo' is set if (ruleInfo == null) { throw new ApiException("Missing the required parameter 'ruleInfo' when calling createRule(Async)"); } // verify the required parameter 'userId' is set if (userId == null) { throw new ApiException("Missing the required parameter 'userId' when calling createRule(Async)"); } // create path and map variables String localVarPath = "/rules".replaceAll("\\{format\\}", "json"); List<Pair> localVarQueryParams = new ArrayList<Pair>(); if (userId != null) localVarQueryParams.addAll(apiClient.parameterToPairs("", "userId", userId)); Map<String, String> localVarHeaderParams = new HashMap<String, String>(); Map<String, Object> localVarFormParams = new HashMap<String, Object>(); final String[] localVarAccepts = { "application/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[] { "artikcloud_oauth" }; return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * Create Rule * Create a new Rule * @param ruleInfo Rule object that needs to be added (required) * @param userId User ID (required) * @return RuleEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RuleEnvelope createRule(RuleCreationInfo ruleInfo, String userId) throws ApiException { ApiResponse<RuleEnvelope> resp = createRuleWithHttpInfo(ruleInfo, userId); return resp.getData(); } /** * Create Rule * Create a new Rule * @param ruleInfo Rule object that needs to be added (required) * @param userId User ID (required) * @return ApiResponse<RuleEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RuleEnvelope> createRuleWithHttpInfo(RuleCreationInfo ruleInfo, String userId) throws ApiException { com.squareup.okhttp.Call call = createRuleCall(ruleInfo, userId, null, null); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Create Rule (asynchronously) * Create a new Rule * @param ruleInfo Rule object that needs to be added (required) * @param userId User ID (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 createRuleAsync(RuleCreationInfo ruleInfo, String userId, final ApiCallback<RuleEnvelope> 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 = createRuleCall(ruleInfo, userId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for deleteRule */ private com.squareup.okhttp.Call deleteRuleCall(String ruleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'ruleId' is set if (ruleId == null) { throw new ApiException("Missing the required parameter 'ruleId' when calling deleteRule(Async)"); } // create path and map variables String localVarPath = "/rules/{ruleId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "ruleId" + "\\}", apiClient.escapeString(ruleId.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" }; 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[] { "artikcloud_oauth" }; return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * Delete Rule * Delete a Rule * @param ruleId Rule ID. (required) * @return RuleEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RuleEnvelope deleteRule(String ruleId) throws ApiException { ApiResponse<RuleEnvelope> resp = deleteRuleWithHttpInfo(ruleId); return resp.getData(); } /** * Delete Rule * Delete a Rule * @param ruleId Rule ID. (required) * @return ApiResponse<RuleEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RuleEnvelope> deleteRuleWithHttpInfo(String ruleId) throws ApiException { com.squareup.okhttp.Call call = deleteRuleCall(ruleId, null, null); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Delete Rule (asynchronously) * Delete a Rule * @param ruleId Rule ID. (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 deleteRuleAsync(String ruleId, final ApiCallback<RuleEnvelope> 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 = deleteRuleCall(ruleId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for getRule */ private com.squareup.okhttp.Call getRuleCall(String ruleId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'ruleId' is set if (ruleId == null) { throw new ApiException("Missing the required parameter 'ruleId' when calling getRule(Async)"); } // create path and map variables String localVarPath = "/rules/{ruleId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "ruleId" + "\\}", apiClient.escapeString(ruleId.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" }; 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[] { "artikcloud_oauth" }; return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * Get Rule * Get a rule using the Rule ID * @param ruleId Rule ID. (required) * @return RuleEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RuleEnvelope getRule(String ruleId) throws ApiException { ApiResponse<RuleEnvelope> resp = getRuleWithHttpInfo(ruleId); return resp.getData(); } /** * Get Rule * Get a rule using the Rule ID * @param ruleId Rule ID. (required) * @return ApiResponse<RuleEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RuleEnvelope> getRuleWithHttpInfo(String ruleId) throws ApiException { com.squareup.okhttp.Call call = getRuleCall(ruleId, null, null); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Get Rule (asynchronously) * Get a rule using the Rule ID * @param ruleId Rule ID. (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 getRuleAsync(String ruleId, final ApiCallback<RuleEnvelope> 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 = getRuleCall(ruleId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for updateRule */ private com.squareup.okhttp.Call updateRuleCall(String ruleId, RuleUpdateInfo ruleInfo, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = ruleInfo; // verify the required parameter 'ruleId' is set if (ruleId == null) { throw new ApiException("Missing the required parameter 'ruleId' when calling updateRule(Async)"); } // verify the required parameter 'ruleInfo' is set if (ruleInfo == null) { throw new ApiException("Missing the required parameter 'ruleInfo' when calling updateRule(Async)"); } // create path and map variables String localVarPath = "/rules/{ruleId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "ruleId" + "\\}", apiClient.escapeString(ruleId.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" }; 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[] { "artikcloud_oauth" }; return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarPostBody, localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener); } /** * Update Rule * Update an existing Rule * @param ruleId Rule ID. (required) * @param ruleInfo Rule object that needs to be updated (required) * @return RuleEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public RuleEnvelope updateRule(String ruleId, RuleUpdateInfo ruleInfo) throws ApiException { ApiResponse<RuleEnvelope> resp = updateRuleWithHttpInfo(ruleId, ruleInfo); return resp.getData(); } /** * Update Rule * Update an existing Rule * @param ruleId Rule ID. (required) * @param ruleInfo Rule object that needs to be updated (required) * @return ApiResponse<RuleEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<RuleEnvelope> updateRuleWithHttpInfo(String ruleId, RuleUpdateInfo ruleInfo) throws ApiException { com.squareup.okhttp.Call call = updateRuleCall(ruleId, ruleInfo, null, null); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Update Rule (asynchronously) * Update an existing Rule * @param ruleId Rule ID. (required) * @param ruleInfo Rule object that needs to be updated (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 updateRuleAsync(String ruleId, RuleUpdateInfo ruleInfo, final ApiCallback<RuleEnvelope> 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 = updateRuleCall(ruleId, ruleInfo, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<RuleEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } }