From 1606ed48c1b3f39cfa0e45aab22658645a9b4118 Mon Sep 17 00:00:00 2001 From: Iván Ávalos Date: Wed, 14 Dec 2022 20:09:40 -0600 Subject: Deleted unused API methods --- .../TrackerMap/client/apis/GeofencesApi.kt | 76 ---------------------- 1 file changed, 76 deletions(-) (limited to 'shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt') diff --git a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt index 049aee9..f4a6bff 100644 --- a/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt +++ b/shared/src/commonMain/kotlin/mx/trackermap/TrackerMap/client/apis/GeofencesApi.kt @@ -54,81 +54,5 @@ class GeofencesApi(sessionManager: SessionManager) : ApiClient(sessionManager), ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error") } } - /** - * Delete a Geofence - * - * @param id - * @return void - */ - suspend fun geofencesIdDelete(id: Int) { - - val localVariableConfig = RequestConfig( - RequestMethod.DELETE, - "/geofences/{id}".replace("{" + "id" + "}", "$id") - ) - val response = request( - localVariableConfig - ) - - return when (response.responseType) { - ResponseType.Success -> Unit - ResponseType.Informational -> TODO() - ResponseType.Redirection -> TODO() - ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error") - ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error") - } - } - /** - * Update a Geofence - * - * @param body - * @param id - * @return Geofence - */ - @Suppress("UNCHECKED_CAST") - suspend fun geofencesIdPut(body: Geofence, id: Int): Geofence { - val localVariableBody: Any = body - - val localVariableConfig = RequestConfig( - RequestMethod.PUT, - "/geofences/{id}".replace("{" + "id" + "}", "$id") - ) - val response = request( - localVariableConfig, localVariableBody - ) - return when (response.responseType) { - ResponseType.Success -> (response as Success<*>).data as Geofence - ResponseType.Informational -> TODO() - ResponseType.Redirection -> TODO() - ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error") - ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error") - } - } - /** - * Create a Geofence - * - * @param body - * @return Geofence - */ - @Suppress("UNCHECKED_CAST") - suspend fun geofencesPost(body: Geofence): Geofence { - val localVariableBody: Any = body - - val localVariableConfig = RequestConfig( - RequestMethod.POST, - "/geofences" - ) - val response = request( - localVariableConfig, localVariableBody - ) - - return when (response.responseType) { - ResponseType.Success -> (response as Success<*>).data as Geofence - ResponseType.Informational -> TODO() - ResponseType.Redirection -> TODO() - ResponseType.ClientError -> throw ClientException((response as ClientError<*>).body as? String ?: "Client error") - ResponseType.ServerError -> throw ServerException((response as ServerError<*>).message ?: "Server error") - } - } } -- cgit v1.2.3