forked from loafle/openapi-generator-original
Merge remote-tracking branch 'origin/4.1.x' into sync_41x_50x
This commit is contained in:
@@ -50,7 +50,7 @@ public interface UserApi {
|
||||
@ApiResponse(code = 200, message = "successful operation") })
|
||||
@RequestMapping(value = "/user/createWithArray",
|
||||
method = RequestMethod.POST)
|
||||
default Mono<ResponseEntity<Void>> createUsersWithArrayInput(@ApiParam(value = "List of user object" ,required=true ) @Valid @RequestBody Flux<List> body, ServerWebExchange exchange) {
|
||||
default Mono<ResponseEntity<Void>> createUsersWithArrayInput(@ApiParam(value = "List of user object" ,required=true ) @Valid @RequestBody Flux<User> body, ServerWebExchange exchange) {
|
||||
return getDelegate().createUsersWithArrayInput(body, exchange);
|
||||
}
|
||||
|
||||
@@ -60,7 +60,7 @@ public interface UserApi {
|
||||
@ApiResponse(code = 200, message = "successful operation") })
|
||||
@RequestMapping(value = "/user/createWithList",
|
||||
method = RequestMethod.POST)
|
||||
default Mono<ResponseEntity<Void>> createUsersWithListInput(@ApiParam(value = "List of user object" ,required=true ) @Valid @RequestBody Flux<List> body, ServerWebExchange exchange) {
|
||||
default Mono<ResponseEntity<Void>> createUsersWithListInput(@ApiParam(value = "List of user object" ,required=true ) @Valid @RequestBody Flux<User> body, ServerWebExchange exchange) {
|
||||
return getDelegate().createUsersWithListInput(body, exchange);
|
||||
}
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ public interface UserApiDelegate {
|
||||
/**
|
||||
* @see UserApi#createUsersWithArrayInput
|
||||
*/
|
||||
default Mono<ResponseEntity<Void>> createUsersWithArrayInput(Flux<List> body,
|
||||
default Mono<ResponseEntity<Void>> createUsersWithArrayInput(Flux<User> body,
|
||||
ServerWebExchange exchange) {
|
||||
Mono<Void> result = Mono.empty();
|
||||
exchange.getResponse().setStatusCode(HttpStatus.NOT_IMPLEMENTED);
|
||||
@@ -52,7 +52,7 @@ public interface UserApiDelegate {
|
||||
/**
|
||||
* @see UserApi#createUsersWithListInput
|
||||
*/
|
||||
default Mono<ResponseEntity<Void>> createUsersWithListInput(Flux<List> body,
|
||||
default Mono<ResponseEntity<Void>> createUsersWithListInput(Flux<User> body,
|
||||
ServerWebExchange exchange) {
|
||||
Mono<Void> result = Mono.empty();
|
||||
exchange.getResponse().setStatusCode(HttpStatus.NOT_IMPLEMENTED);
|
||||
|
||||
@@ -1736,8 +1736,6 @@ components:
|
||||
type: object
|
||||
type: object
|
||||
List:
|
||||
example:
|
||||
123-list: 123-list
|
||||
properties:
|
||||
123-list:
|
||||
type: string
|
||||
|
||||
Reference in New Issue
Block a user