Skip to content
Prev Previous commit
Next Next commit
Deprecate old signature of invokeAPI method
  • Loading branch information
jirikuncar committed Jan 15, 2020
commit 807ece0fa5d7293639bc62d8d698c8a4ff00ae22
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,14 @@ public class ApiClient {
}
}

/**
* @deprecated Add qualified name of the operation as a first parameter.
*/
@Deprecated
public <T> ApiResponse<T> invokeAPI(String path, String method, List<Pair> queryParams, Object body, Map<String, String> headerParams, Map<String, String> cookieParams, Map<String, Object> formParams, String accept, String contentType, String[] authNames, GenericType<T> returnType) throws ApiException {
return invokeAPI(null, path, method, queryParams, body, headerParams, cookieParams, formParams, accept, contentType, authNames, returnType);
}

/**
* Build the Client used to make HTTP requests.
* @param debugging Debug setting
Expand Down