@@ -175,7 +175,7 @@ public Response fakePropertyEnumIntegerSerialize(@ApiParam(value = "Input enum (
175175 @ io .swagger .annotations .ApiResponses (value = {
176176 @ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
177177 })
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 )
179179 throws NotFoundException {
180180 return delegate .testAdditionalPropertiesReference (requestBody , securityContext );
181181 }
@@ -252,7 +252,7 @@ public Response testEndpointParameters(@ApiParam(value = "None", required=true)
252252 @ io .swagger .annotations .ApiResponse (code = 400 , message = "Invalid request" , response = Void .class ),
253253 @ io .swagger .annotations .ApiResponse (code = 404 , message = "Not found" , response = Void .class )
254254 })
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 )
256256 throws NotFoundException {
257257 return delegate .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumQueryModelArray , enumFormStringArray , enumFormString , securityContext );
258258 }
@@ -278,7 +278,7 @@ public Response testGroupParameters(@ApiParam(value = "Required String in group
278278 @ io .swagger .annotations .ApiResponses (value = {
279279 @ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
280280 })
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 )
282282 throws NotFoundException {
283283 return delegate .testInlineAdditionalProperties (requestBody , securityContext );
284284 }
@@ -326,7 +326,7 @@ public Response testNullable(@ApiParam(value = "request body", required = true)
326326 @ io .swagger .annotations .ApiResponses (value = {
327327 @ io .swagger .annotations .ApiResponse (code = 200 , message = "Success" , response = Void .class )
328328 })
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 )
330330 throws NotFoundException {
331331 return delegate .testQueryParameterCollectionFormat (pipe , ioutil , http , url , context , allowEmpty , language , securityContext );
332332 }
@@ -338,7 +338,7 @@ public Response testQueryParameterCollectionFormat(@ApiParam(value = "", require
338338 @ io .swagger .annotations .ApiResponses (value = {
339339 @ io .swagger .annotations .ApiResponse (code = 200 , message = "successful operation" , response = Void .class )
340340 })
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 )
342342 throws NotFoundException {
343343 return delegate .testStringMapReference (requestBody , securityContext );
344344 }
0 commit comments