@@ -175,7 +175,7 @@ public Response fakePropertyEnumIntegerSerialize(@ApiParam(value = "Input enum (
175
175
@ io .swagger .annotations .ApiResponses (value = {
176
176
@ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
177
177
})
178
- public Response testAdditionalPropertiesReference (@ ApiParam (value = "request body" , required = true ) @ NotNull @ Valid Map <String , Object > requestBody ,@ Context SecurityContext securityContext )
178
+ public Response testAdditionalPropertiesReference (@ ApiParam (value = "request body" , required = true ) @ NotNull Map <String , Object > requestBody ,@ Context SecurityContext securityContext )
179
179
throws NotFoundException {
180
180
return delegate .testAdditionalPropertiesReference (requestBody , securityContext );
181
181
}
@@ -252,7 +252,7 @@ public Response testEndpointParameters(@ApiParam(value = "None", required=true)
252
252
@ io .swagger .annotations .ApiResponse (code = 400 , message = "Invalid request" , response = Void .class ),
253
253
@ io .swagger .annotations .ApiResponse (code = 404 , message = "Not found" , response = Void .class )
254
254
})
255
- public Response testEnumParameters (@ ApiParam (value = "Header parameter enum test (string array)" , allowableValues =">, $" )@ HeaderParam ("enum_header_string_array" ) List <String > enumHeaderStringArray ,@ ApiParam (value = "Header parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" )@ HeaderParam ("enum_header_string" ) String enumHeaderString ,@ ApiParam (value = "Query parameter enum test (string array)" ) @ QueryParam ("enum_query_string_array" ) @ Valid List <String > enumQueryStringArray ,@ ApiParam (value = "Query parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue = "-efg" ) @ DefaultValue ("-efg" ) @ QueryParam ("enum_query_string" ) String enumQueryString ,@ ApiParam (value = "Query parameter enum test (double)" , allowableValues ="1, -2" ) @ QueryParam ("enum_query_integer" ) Integer enumQueryInteger ,@ ApiParam (value = "Query parameter enum test (double)" , allowableValues ="1.1, -1.2" ) @ QueryParam ("enum_query_double" ) Double enumQueryDouble ,@ ApiParam (value = "" ) @ QueryParam ("enum_query_model_array" ) @ Valid List <EnumClass > enumQueryModelArray ,@ ApiParam (value = "Form parameter enum test (string array)" , allowableValues =">, $" , defaultValue ="$" ) @ DefaultValue ("$" ) @ FormParam ("enum_form_string_array" ) List <String > enumFormStringArray ,@ ApiParam (value = "Form parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" ) @ DefaultValue ("-efg" ) @ FormParam ("enum_form_string" ) String enumFormString ,@ Context SecurityContext securityContext )
255
+ public Response testEnumParameters (@ ApiParam (value = "Header parameter enum test (string array)" , allowableValues =">, $" )@ HeaderParam ("enum_header_string_array" ) List <String > enumHeaderStringArray ,@ ApiParam (value = "Header parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" )@ HeaderParam ("enum_header_string" ) String enumHeaderString ,@ ApiParam (value = "Query parameter enum test (string array)" ) @ QueryParam ("enum_query_string_array" ) List <String > enumQueryStringArray ,@ ApiParam (value = "Query parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue = "-efg" ) @ DefaultValue ("-efg" ) @ QueryParam ("enum_query_string" ) String enumQueryString ,@ ApiParam (value = "Query parameter enum test (double)" , allowableValues ="1, -2" ) @ QueryParam ("enum_query_integer" ) Integer enumQueryInteger ,@ ApiParam (value = "Query parameter enum test (double)" , allowableValues ="1.1, -1.2" ) @ QueryParam ("enum_query_double" ) Double enumQueryDouble ,@ ApiParam (value = "" ) @ QueryParam ("enum_query_model_array" ) List <EnumClass > enumQueryModelArray ,@ ApiParam (value = "Form parameter enum test (string array)" , allowableValues =">, $" , defaultValue ="$" ) @ DefaultValue ("$" ) @ FormParam ("enum_form_string_array" ) List <String > enumFormStringArray ,@ ApiParam (value = "Form parameter enum test (string)" , allowableValues ="_abc, -efg, (xyz)" , defaultValue ="-efg" ) @ DefaultValue ("-efg" ) @ FormParam ("enum_form_string" ) String enumFormString ,@ Context SecurityContext securityContext )
256
256
throws NotFoundException {
257
257
return delegate .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumQueryModelArray , enumFormStringArray , enumFormString , securityContext );
258
258
}
@@ -278,7 +278,7 @@ public Response testGroupParameters(@ApiParam(value = "Required String in group
278
278
@ io .swagger .annotations .ApiResponses (value = {
279
279
@ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
280
280
})
281
- public Response testInlineAdditionalProperties (@ ApiParam (value = "request body" , required = true ) @ NotNull @ Valid Map <String , String > requestBody ,@ Context SecurityContext securityContext )
281
+ public Response testInlineAdditionalProperties (@ ApiParam (value = "request body" , required = true ) @ NotNull Map <String , String > requestBody ,@ Context SecurityContext securityContext )
282
282
throws NotFoundException {
283
283
return delegate .testInlineAdditionalProperties (requestBody , securityContext );
284
284
}
@@ -326,7 +326,7 @@ public Response testNullable(@ApiParam(value = "request body", required = true)
326
326
@ io .swagger .annotations .ApiResponses (value = {
327
327
@ io .swagger .annotations .ApiResponse (code = 200 , message = "Success" , response = Void .class )
328
328
})
329
- public Response testQueryParameterCollectionFormat (@ ApiParam (value = "" , required = true ) @ QueryParam ("pipe" ) @ NotNull @ Valid List <String > pipe ,@ ApiParam (value = "" , required = true ) @ QueryParam ("ioutil" ) @ NotNull @ Valid List <String > ioutil ,@ ApiParam (value = "" , required = true ) @ QueryParam ("http" ) @ NotNull @ Valid List <String > http ,@ ApiParam (value = "" , required = true ) @ QueryParam ("url" ) @ NotNull @ Valid List <String > url ,@ ApiParam (value = "" , required = true ) @ QueryParam ("context" ) @ NotNull @ Valid List <String > context ,@ ApiParam (value = "" , required = true ) @ QueryParam ("allowEmpty" ) @ NotNull String allowEmpty ,@ ApiParam (value = "" ) @ QueryParam ("language" ) @ Valid Map <String , String > language ,@ Context SecurityContext securityContext )
329
+ public Response testQueryParameterCollectionFormat (@ ApiParam (value = "" , required = true ) @ QueryParam ("pipe" ) @ NotNull List <String > pipe ,@ ApiParam (value = "" , required = true ) @ QueryParam ("ioutil" ) @ NotNull List <String > ioutil ,@ ApiParam (value = "" , required = true ) @ QueryParam ("http" ) @ NotNull List <String > http ,@ ApiParam (value = "" , required = true ) @ QueryParam ("url" ) @ NotNull List <String > url ,@ ApiParam (value = "" , required = true ) @ QueryParam ("context" ) @ NotNull List <String > context ,@ ApiParam (value = "" , required = true ) @ QueryParam ("allowEmpty" ) @ NotNull String allowEmpty ,@ ApiParam (value = "" ) @ QueryParam ("language" ) Map <String , String > language ,@ Context SecurityContext securityContext )
330
330
throws NotFoundException {
331
331
return delegate .testQueryParameterCollectionFormat (pipe , ioutil , http , url , context , allowEmpty , language , securityContext );
332
332
}
@@ -338,7 +338,7 @@ public Response testQueryParameterCollectionFormat(@ApiParam(value = "", require
338
338
@ io .swagger .annotations .ApiResponses (value = {
339
339
@ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
340
340
})
341
- public Response testStringMapReference (@ ApiParam (value = "request body" , required = true ) @ NotNull @ Valid Map <String , String > requestBody ,@ Context SecurityContext securityContext )
341
+ public Response testStringMapReference (@ ApiParam (value = "request body" , required = true ) @ NotNull Map <String , String > requestBody ,@ Context SecurityContext securityContext )
342
342
throws NotFoundException {
343
343
return delegate .testStringMapReference (requestBody , securityContext );
344
344
}
0 commit comments