@@ -248,7 +248,7 @@ public Response testClientModel(@Schema(description = "client model", required =
248
248
},security = {
249
249
@ SecurityRequirement (name = "http_basic_test" )
250
250
}, tags ={ "fake" , })
251
- public Response testEndpointParameters (@ Schema (description = "None" ) @ QueryParam ("number" ) BigDecimal number ,@ Schema (description = "None" ) @ QueryParam ("double" ) Double _double ,@ Schema (description = "None" ) @ QueryParam ("pattern_without_delimiter" ) String patternWithoutDelimiter ,@ Schema (description = "None" ) @ QueryParam ("byte" ) byte [] _byte ,@ Schema (description = "None" ) @ QueryParam ("integer" ) Integer integer ,@ Schema (description = "None" ) @ QueryParam ("int32" ) Integer int32 ,@ Schema (description = "None" ) @ QueryParam ("int64" ) Long int64 ,@ Schema (description = "None" ) @ QueryParam ("float" ) Float _float ,@ Schema (description = "None" ) @ QueryParam ("string" ) String string ,@ FormDataParam ("binary" ) FormDataBodyPart binaryBodypart ,@ Schema (description = "None" ) @ QueryParam ("date" ) Date date ,@ Schema (description = "None" ) @ QueryParam ("dateTime" ) Date dateTime ,@ Schema (description = "None" ) @ QueryParam ("password" ) String password ,@ Schema (description = "None" ) @ QueryParam ("callback" ) String paramCallback ,@ Context SecurityContext securityContext )
251
+ public Response testEndpointParameters (@ Schema (description = "None" ) @ FormParam ("number" ) BigDecimal number ,@ Schema (description = "None" ) @ FormParam ("double" ) Double _double ,@ Schema (description = "None" ) @ FormParam ("pattern_without_delimiter" ) String patternWithoutDelimiter ,@ Schema (description = "None" ) @ FormParam ("byte" ) byte [] _byte ,@ Schema (description = "None" ) @ FormParam ("integer" ) Integer integer ,@ Schema (description = "None" ) @ FormParam ("int32" ) Integer int32 ,@ Schema (description = "None" ) @ FormParam ("int64" ) Long int64 ,@ Schema (description = "None" ) @ FormParam ("float" ) Float _float ,@ Schema (description = "None" ) @ FormParam ("string" ) String string ,@ FormDataParam ("binary" ) FormDataBodyPart binaryBodypart ,@ Schema (description = "None" ) @ FormParam ("date" ) Date date ,@ Schema (description = "None" ) @ FormParam ("dateTime" ) Date dateTime ,@ Schema (description = "None" ) @ FormParam ("password" ) String password ,@ Schema (description = "None" ) @ FormParam ("callback" ) String paramCallback ,@ Context SecurityContext securityContext )
252
252
throws NotFoundException {
253
253
return delegate .testEndpointParameters (number , _double , patternWithoutDelimiter , _byte , integer , int32 , int64 , _float , string , binaryBodypart , date , dateTime , password , paramCallback , securityContext );
254
254
}
@@ -261,7 +261,7 @@ public Response testEndpointParameters(@Schema(description = "None") @QueryParam
261
261
@ ApiResponse (responseCode = "404" , description = "Not found" , content =
262
262
@ Content (schema = @ Schema (implementation = Void .class ))),
263
263
}, tags ={ "fake" , })
264
- public Response testEnumParameters (@ Schema (description = "Header parameter enum test (string array)" , allowableValues =">, $" )@ HeaderParam ("enum_header_string_array" ) List <String > enumHeaderStringArray ,@ Schema (description = "Header parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" )@ HeaderParam ("enum_header_string" ) String enumHeaderString ,@ Schema (description = "Query parameter enum test (string array)" ) @ QueryParam ("enum_query_string_array" ) List <String > enumQueryStringArray ,@ Schema (description = "Query parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue = "-efg" ) @ DefaultValue ("-efg" ) @ QueryParam ("enum_query_string" ) String enumQueryString ,@ Schema (description = "Query parameter enum test (double)" , allowableValues ="1, -2" ) @ QueryParam ("enum_query_integer" ) Integer enumQueryInteger ,@ Schema (description = "Query parameter enum test (double)" , allowableValues ="1.1, -1.2" ) @ QueryParam ("enum_query_double" ) Double enumQueryDouble ,@ Schema (description = "" ) @ QueryParam ("enum_query_model_array" ) List <EnumClass > enumQueryModelArray ,@ Schema (description = "Form parameter enum test (string array)" , allowableValues =">, $" , defaultValue ="$" ) @ DefaultValue ("$" ) @ QueryParam ("enum_form_string_array" ) List <String > enumFormStringArray ,@ Schema (description = "Form parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" ) @ DefaultValue ("-efg" ) @ QueryParam ("enum_form_string" ) String enumFormString ,@ Context SecurityContext securityContext )
264
+ public Response testEnumParameters (@ Schema (description = "Header parameter enum test (string array)" , allowableValues =">, $" )@ HeaderParam ("enum_header_string_array" ) List <String > enumHeaderStringArray ,@ Schema (description = "Header parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" )@ HeaderParam ("enum_header_string" ) String enumHeaderString ,@ Schema (description = "Query parameter enum test (string array)" ) @ QueryParam ("enum_query_string_array" ) List <String > enumQueryStringArray ,@ Schema (description = "Query parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue = "-efg" ) @ DefaultValue ("-efg" ) @ QueryParam ("enum_query_string" ) String enumQueryString ,@ Schema (description = "Query parameter enum test (double)" , allowableValues ="1, -2" ) @ QueryParam ("enum_query_integer" ) Integer enumQueryInteger ,@ Schema (description = "Query parameter enum test (double)" , allowableValues ="1.1, -1.2" ) @ QueryParam ("enum_query_double" ) Double enumQueryDouble ,@ Schema (description = "" ) @ QueryParam ("enum_query_model_array" ) List <EnumClass > enumQueryModelArray ,@ Schema (description = "Form parameter enum test (string array)" , allowableValues =">, $" , defaultValue ="$" ) @ DefaultValue ("$" ) @ FormParam ("enum_form_string_array" ) List <String > enumFormStringArray ,@ Schema (description = "Form parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" ) @ DefaultValue ("-efg" ) @ FormParam ("enum_form_string" ) String enumFormString ,@ Context SecurityContext securityContext )
265
265
throws NotFoundException {
266
266
return delegate .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumQueryModelArray , enumFormStringArray , enumFormString , securityContext );
267
267
}
@@ -309,7 +309,7 @@ public Response testInlineFreeformAdditionalProperties(@Schema(description = "re
309
309
@ ApiResponse (responseCode = "200" , description = "successful operation" , content =
310
310
@ Content (schema = @ Schema (implementation = Void .class ))),
311
311
}, tags ={ "fake" , })
312
- public Response testJsonFormData (@ Schema (description = "field1" ) @ QueryParam ("param" ) String param ,@ Schema (description = "field2" ) @ QueryParam ("param2" ) String param2 ,@ Context SecurityContext securityContext )
312
+ public Response testJsonFormData (@ Schema (description = "field1" ) @ FormParam ("param" ) String param ,@ Schema (description = "field2" ) @ FormParam ("param2" ) String param2 ,@ Context SecurityContext securityContext )
313
313
throws NotFoundException {
314
314
return delegate .testJsonFormData (param , param2 , securityContext );
315
315
}
0 commit comments