Skip to content

Commit 38d6815

Browse files
correct javadoc
1 parent 3ab0496 commit 38d6815

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

src/main/java/io/tiledb/cloud/CustomCode.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ UdfApi.java
5454
* @param namespace namespace array is in (an organization name or user's username) (required)
5555
* @param udf UDF to run (required)
5656
* @param acceptEncoding Encoding to use (optional)
57-
* @return ApiResponse<File>
57+
* @return ApiResponse<String>
5858
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
5959
* @http.response.details
6060
<table summary="Response Details" border="1">
@@ -145,7 +145,7 @@ public byte[] submitUDFBytes(String namespace, String array, MultiArrayUDF udf,
145145
* @param xPayer Name of organization or user who should be charged for this request (optional)
146146
* @param acceptEncoding Encoding to use (optional)
147147
* @param v2 flag to indicate if v2 array UDFs should be used, currently in beta testing. Setting any value will enable v2 array UDFs. (optional)
148-
* @return ApiResponse&lt;File&gt;
148+
* @return ApiResponse&lt;byte[]&gt;
149149
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
150150
* @http.response.details
151151
<table summary="Response Details" border="1">
@@ -186,7 +186,7 @@ public String submitMultiArrayUDFString(String namespace, MultiArrayUDF udf, Str
186186
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
187187
* @param udf UDF to run (required)
188188
* @param acceptEncoding Encoding to use (optional)
189-
* @return ApiResponse&lt;File&gt;
189+
* @return ApiResponse&lt;String&gt;
190190
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
191191
* @http.response.details
192192
<table summary="Response Details" border="1">
@@ -227,7 +227,7 @@ public byte[] submitMultiArrayUDFBytes(String namespace, MultiArrayUDF udf, Stri
227227
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
228228
* @param udf UDF to run (required)
229229
* @param acceptEncoding Encoding to use (optional)
230-
* @return ApiResponse&lt;File&gt;
230+
* @return ApiResponse&lt;byte[]&gt;
231231
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
232232
* @http.response.details
233233
<table summary="Response Details" border="1">

src/main/java/io/tiledb/cloud/rest_api/api/UdfApi.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1076,7 +1076,7 @@ public File submitGenericUDF(String namespace, GenericUDF udf, String acceptEnco
10761076
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
10771077
* @param udf UDF to run (required)
10781078
* @param acceptEncoding Encoding to use (optional)
1079-
* @return ApiResponse&lt;File&gt;
1079+
* @return ApiResponse&lt;String&gt;
10801080
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
10811081
* @http.response.details
10821082
<table summary="Response Details" border="1">
@@ -1097,7 +1097,7 @@ public ApiResponse<String> submitGenericUDFWithHttpInfoString(String namespace,
10971097
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
10981098
* @param udf UDF to run (required)
10991099
* @param acceptEncoding Encoding to use (optional)
1100-
* @return File
1100+
* @return String
11011101
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
11021102
* @http.response.details
11031103
<table summary="Response Details" border="1">
@@ -1158,7 +1158,7 @@ public byte[] submitGenericUDFBytes(String namespace, GenericUDF udf, String acc
11581158
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
11591159
* @param udf UDF to run (required)
11601160
* @param acceptEncoding Encoding to use (optional)
1161-
* @return ApiResponse&lt;File&gt;
1161+
* @return ApiResponse&lt;byte[]&gt;
11621162
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
11631163
* @http.response.details
11641164
<table summary="Response Details" border="1">
@@ -1179,7 +1179,7 @@ public ApiResponse<byte[]> submitGenericUDFWithHttpInfoBytes(String namespace, G
11791179
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
11801180
* @param udf UDF to run (required)
11811181
* @param acceptEncoding Encoding to use (optional)
1182-
* @return list<Object>
1182+
* @return Object
11831183
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
11841184
* @http.response.details
11851185
<table summary="Response Details" border="1">
@@ -1199,7 +1199,7 @@ public Object submitGenericUDFObj(String namespace, GenericUDF udf, String accep
11991199
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
12001200
* @param udf UDF to run (required)
12011201
* @param acceptEncoding Encoding to use (optional)
1202-
* @return ApiResponse&lt;File&gt;
1202+
* @return ApiResponse&lt;Object&gt;
12031203
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
12041204
* @http.response.details
12051205
<table summary="Response Details" border="1">
@@ -1387,7 +1387,7 @@ public String submitMultiArrayUDFString(String namespace, MultiArrayUDF udf, Str
13871387
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
13881388
* @param udf UDF to run (required)
13891389
* @param acceptEncoding Encoding to use (optional)
1390-
* @return ApiResponse&lt;File&gt;
1390+
* @return ApiResponse&lt;String&gt;
13911391
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
13921392
* @http.response.details
13931393
<table summary="Response Details" border="1">
@@ -1428,7 +1428,7 @@ public byte[] submitMultiArrayUDFBytes(String namespace, MultiArrayUDF udf, Stri
14281428
* @param namespace namespace array is in (an organization name or user&#39;s username) (required)
14291429
* @param udf UDF to run (required)
14301430
* @param acceptEncoding Encoding to use (optional)
1431-
* @return ApiResponse&lt;File&gt;
1431+
* @return ApiResponse&lt;byte[]&gt;
14321432
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
14331433
* @http.response.details
14341434
<table summary="Response Details" border="1">
@@ -1646,7 +1646,7 @@ public String submitUDFString(String namespace, String array, MultiArrayUDF udf,
16461646
* @param xPayer Name of organization or user who should be charged for this request (optional)
16471647
* @param acceptEncoding Encoding to use (optional)
16481648
* @param v2 flag to indicate if v2 array UDFs should be used, currently in beta testing. Setting any value will enable v2 array UDFs. (optional)
1649-
* @return ApiResponse&lt;File&gt;
1649+
* @return ApiResponse&lt;String&gt;
16501650
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
16511651
* @http.response.details
16521652
<table summary="Response Details" border="1">
@@ -1693,7 +1693,7 @@ public byte[] submitUDFBytes(String namespace, String array, MultiArrayUDF udf,
16931693
* @param xPayer Name of organization or user who should be charged for this request (optional)
16941694
* @param acceptEncoding Encoding to use (optional)
16951695
* @param v2 flag to indicate if v2 array UDFs should be used, currently in beta testing. Setting any value will enable v2 array UDFs. (optional)
1696-
* @return ApiResponse&lt;File&gt;
1696+
* @return ApiResponse&lt;byte[]&gt;
16971697
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
16981698
* @http.response.details
16991699
<table summary="Response Details" border="1">

0 commit comments

Comments
 (0)