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.Device; import cloud.artik.model.DeviceEnvelope; import cloud.artik.model.DeviceTokenEnvelope; import cloud.artik.model.PresenceEnvelope; import java.lang.reflect.Type; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class DevicesApi { private ApiClient apiClient; public DevicesApi() { this(Configuration.getDefaultApiClient()); } public DevicesApi(ApiClient apiClient) { this.apiClient = apiClient; } public ApiClient getApiClient() { return apiClient; } public void setApiClient(ApiClient apiClient) { this.apiClient = apiClient; } /* Build call for addDevice */ private com.squareup.okhttp.Call addDeviceCall(Device device, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = device; // verify the required parameter 'device' is set if (device == null) { throw new ApiException("Missing the required parameter 'device' when calling addDevice(Async)"); } // create path and map variables String localVarPath = "/devices".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" }; final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts); if (localVarAccept != null) localVarHeaderParams.put("Accept", localVarAccept); final String[] localVarContentTypes = { "application/json" }; 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); } /** * Add Device * Create a device * @param device Device to be added to the user (required) * @return DeviceEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceEnvelope addDevice(Device device) throws ApiException { ApiResponse<DeviceEnvelope> resp = addDeviceWithHttpInfo(device); return resp.getData(); } /** * Add Device * Create a device * @param device Device to be added to the user (required) * @return ApiResponse<DeviceEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceEnvelope> addDeviceWithHttpInfo(Device device) throws ApiException { com.squareup.okhttp.Call call = addDeviceCall(device, null, null); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Add Device (asynchronously) * Create a device * @param device Device to be added to the user (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 addDeviceAsync(Device device, final ApiCallback<DeviceEnvelope> 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 = addDeviceCall(device, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for deleteDevice */ private com.squareup.okhttp.Call deleteDeviceCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException("Missing the required parameter 'deviceId' when calling deleteDevice(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 Device * Deletes a device * @param deviceId deviceId (required) * @return DeviceEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceEnvelope deleteDevice(String deviceId) throws ApiException { ApiResponse<DeviceEnvelope> resp = deleteDeviceWithHttpInfo(deviceId); return resp.getData(); } /** * Delete Device * Deletes a device * @param deviceId deviceId (required) * @return ApiResponse<DeviceEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceEnvelope> deleteDeviceWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = deleteDeviceCall(deviceId, null, null); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Delete Device (asynchronously) * Deletes a device * @param deviceId deviceId (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 deleteDeviceAsync(String deviceId, final ApiCallback<DeviceEnvelope> 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 = deleteDeviceCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for deleteDeviceToken */ private com.squareup.okhttp.Call deleteDeviceTokenCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException( "Missing the required parameter 'deviceId' when calling deleteDeviceToken(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}/tokens".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 Device Token * Deletes a device's token * @param deviceId deviceId (required) * @return DeviceTokenEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceTokenEnvelope deleteDeviceToken(String deviceId) throws ApiException { ApiResponse<DeviceTokenEnvelope> resp = deleteDeviceTokenWithHttpInfo(deviceId); return resp.getData(); } /** * Delete Device Token * Deletes a device's token * @param deviceId deviceId (required) * @return ApiResponse<DeviceTokenEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceTokenEnvelope> deleteDeviceTokenWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = deleteDeviceTokenCall(deviceId, null, null); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Delete Device Token (asynchronously) * Deletes a device's token * @param deviceId deviceId (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 deleteDeviceTokenAsync(String deviceId, final ApiCallback<DeviceTokenEnvelope> 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 = deleteDeviceTokenCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for getDevice */ private com.squareup.okhttp.Call getDeviceCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException("Missing the required parameter 'deviceId' when calling getDevice(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 Device * Retrieves a device * @param deviceId deviceId (required) * @return DeviceEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceEnvelope getDevice(String deviceId) throws ApiException { ApiResponse<DeviceEnvelope> resp = getDeviceWithHttpInfo(deviceId); return resp.getData(); } /** * Get Device * Retrieves a device * @param deviceId deviceId (required) * @return ApiResponse<DeviceEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceEnvelope> getDeviceWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = getDeviceCall(deviceId, null, null); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Get Device (asynchronously) * Retrieves a device * @param deviceId deviceId (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 getDeviceAsync(String deviceId, final ApiCallback<DeviceEnvelope> 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 = getDeviceCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for getDevicePresence */ private com.squareup.okhttp.Call getDevicePresenceCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException( "Missing the required parameter 'deviceId' when calling getDevicePresence(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}/presence".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 device presence information * Return the presence status of the given device along with the time it was last seen * @param deviceId Device ID. (required) * @return PresenceEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public PresenceEnvelope getDevicePresence(String deviceId) throws ApiException { ApiResponse<PresenceEnvelope> resp = getDevicePresenceWithHttpInfo(deviceId); return resp.getData(); } /** * Get device presence information * Return the presence status of the given device along with the time it was last seen * @param deviceId Device ID. (required) * @return ApiResponse<PresenceEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<PresenceEnvelope> getDevicePresenceWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = getDevicePresenceCall(deviceId, null, null); Type localVarReturnType = new TypeToken<PresenceEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Get device presence information (asynchronously) * Return the presence status of the given device along with the time it was last seen * @param deviceId Device 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 getDevicePresenceAsync(String deviceId, final ApiCallback<PresenceEnvelope> 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 = getDevicePresenceCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<PresenceEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for getDeviceToken */ private com.squareup.okhttp.Call getDeviceTokenCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException("Missing the required parameter 'deviceId' when calling getDeviceToken(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}/tokens".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 Device Token * Retrieves a device's token * @param deviceId deviceId (required) * @return DeviceTokenEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceTokenEnvelope getDeviceToken(String deviceId) throws ApiException { ApiResponse<DeviceTokenEnvelope> resp = getDeviceTokenWithHttpInfo(deviceId); return resp.getData(); } /** * Get Device Token * Retrieves a device's token * @param deviceId deviceId (required) * @return ApiResponse<DeviceTokenEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceTokenEnvelope> getDeviceTokenWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = getDeviceTokenCall(deviceId, null, null); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Get Device Token (asynchronously) * Retrieves a device's token * @param deviceId deviceId (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 getDeviceTokenAsync(String deviceId, final ApiCallback<DeviceTokenEnvelope> 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 = getDeviceTokenCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for updateDevice */ private com.squareup.okhttp.Call updateDeviceCall(String deviceId, Device device, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = device; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException("Missing the required parameter 'deviceId' when calling updateDevice(Async)"); } // verify the required parameter 'device' is set if (device == null) { throw new ApiException("Missing the required parameter 'device' when calling updateDevice(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 = { "application/json" }; 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 Device * Updates a device * @param deviceId deviceId (required) * @param device Device to be updated (required) * @return DeviceEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceEnvelope updateDevice(String deviceId, Device device) throws ApiException { ApiResponse<DeviceEnvelope> resp = updateDeviceWithHttpInfo(deviceId, device); return resp.getData(); } /** * Update Device * Updates a device * @param deviceId deviceId (required) * @param device Device to be updated (required) * @return ApiResponse<DeviceEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceEnvelope> updateDeviceWithHttpInfo(String deviceId, Device device) throws ApiException { com.squareup.okhttp.Call call = updateDeviceCall(deviceId, device, null, null); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Update Device (asynchronously) * Updates a device * @param deviceId deviceId (required) * @param device Device 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 updateDeviceAsync(String deviceId, Device device, final ApiCallback<DeviceEnvelope> 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 = updateDeviceCall(deviceId, device, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } /* Build call for updateDeviceToken */ private com.squareup.okhttp.Call updateDeviceTokenCall(String deviceId, final ProgressResponseBody.ProgressListener progressListener, final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException { Object localVarPostBody = null; // verify the required parameter 'deviceId' is set if (deviceId == null) { throw new ApiException( "Missing the required parameter 'deviceId' when calling updateDeviceToken(Async)"); } // create path and map variables String localVarPath = "/devices/{deviceId}/tokens".replaceAll("\\{format\\}", "json") .replaceAll("\\{" + "deviceId" + "\\}", apiClient.escapeString(deviceId.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 = { "text/plain" }; 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 Device Token * Updates a device's token * @param deviceId deviceId (required) * @return DeviceTokenEnvelope * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public DeviceTokenEnvelope updateDeviceToken(String deviceId) throws ApiException { ApiResponse<DeviceTokenEnvelope> resp = updateDeviceTokenWithHttpInfo(deviceId); return resp.getData(); } /** * Update Device Token * Updates a device's token * @param deviceId deviceId (required) * @return ApiResponse<DeviceTokenEnvelope> * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body */ public ApiResponse<DeviceTokenEnvelope> updateDeviceTokenWithHttpInfo(String deviceId) throws ApiException { com.squareup.okhttp.Call call = updateDeviceTokenCall(deviceId, null, null); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); return apiClient.execute(call, localVarReturnType); } /** * Update Device Token (asynchronously) * Updates a device's token * @param deviceId deviceId (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 updateDeviceTokenAsync(String deviceId, final ApiCallback<DeviceTokenEnvelope> 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 = updateDeviceTokenCall(deviceId, progressListener, progressRequestListener); Type localVarReturnType = new TypeToken<DeviceTokenEnvelope>() { }.getType(); apiClient.executeAsync(call, localVarReturnType, callback); return call; } }