update java samples

This commit is contained in:
William Cheng
2024-01-12 12:51:33 +08:00
parent e384201416
commit 75ef9e0b02
136 changed files with 768 additions and 768 deletions

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -83,7 +83,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
List<Pet> findPetsByStatus(@Param("status") List<String> status);
@@ -96,7 +96,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<List<Pet>> findPetsByStatusWithHttpInfo(@Param("status") List<String> status);
@@ -118,7 +118,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
List<Pet> findPetsByStatus(@QueryMap(encoded=true) FindPetsByStatusQueryParams queryParams);
@@ -136,7 +136,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<List<Pet>> findPetsByStatusWithHttpInfo(@QueryMap(encoded=true) FindPetsByStatusQueryParams queryParams);
@@ -162,7 +162,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Set<Pet> findPetsByTags(@Param("tags") Set<String> tags);
@@ -177,7 +177,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Set<Pet>> findPetsByTagsWithHttpInfo(@Param("tags") Set<String> tags);
@@ -201,7 +201,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Set<Pet> findPetsByTags(@QueryMap(encoded=true) FindPetsByTagsQueryParams queryParams);
@@ -221,7 +221,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Set<Pet>> findPetsByTagsWithHttpInfo(@QueryMap(encoded=true) FindPetsByTagsQueryParams queryParams);
@@ -245,7 +245,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/{petId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Pet getPetById(@Param("petId") Long petId);
@@ -258,7 +258,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/{petId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Pet> getPetByIdWithHttpInfo(@Param("petId") Long petId);

View File

@@ -74,7 +74,7 @@ public interface StoreApi extends ApiClient.Api {
*/
@RequestLine("GET /store/order/{orderId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Order getOrderById(@Param("orderId") Long orderId);
@@ -87,7 +87,7 @@ public interface StoreApi extends ApiClient.Api {
*/
@RequestLine("GET /store/order/{orderId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Order> getOrderByIdWithHttpInfo(@Param("orderId") Long orderId);
@@ -102,7 +102,7 @@ public interface StoreApi extends ApiClient.Api {
@RequestLine("POST /store/order")
@Headers({
"Content-Type: */*",
"Accept: application/json",
"Accept: application/json,application/xml",
})
Order placeOrder(Order body);
@@ -116,7 +116,7 @@ public interface StoreApi extends ApiClient.Api {
@RequestLine("POST /store/order")
@Headers({
"Content-Type: */*",
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Order> placeOrderWithHttpInfo(Order body);

View File

@@ -131,7 +131,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/{username}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
User getUserByName(@Param("username") String username);
@@ -144,7 +144,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/{username}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<User> getUserByNameWithHttpInfo(@Param("username") String username);
@@ -159,7 +159,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
String loginUser(@Param("username") String username, @Param("password") String password);
@@ -173,7 +173,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<String> loginUserWithHttpInfo(@Param("username") String username, @Param("password") String password);
@@ -196,7 +196,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
String loginUser(@QueryMap(encoded=true) LoginUserQueryParams queryParams);
@@ -215,7 +215,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<String> loginUserWithHttpInfo(@QueryMap(encoded=true) LoginUserQueryParams queryParams);

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -83,7 +83,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
List<Pet> findPetsByStatus(@Param("status") List<String> status);
@@ -96,7 +96,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<List<Pet>> findPetsByStatusWithHttpInfo(@Param("status") List<String> status);
@@ -118,7 +118,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
List<Pet> findPetsByStatus(@QueryMap(encoded=true) FindPetsByStatusQueryParams queryParams);
@@ -136,7 +136,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/findByStatus?status={status}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<List<Pet>> findPetsByStatusWithHttpInfo(@QueryMap(encoded=true) FindPetsByStatusQueryParams queryParams);
@@ -162,7 +162,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Set<Pet> findPetsByTags(@Param("tags") Set<String> tags);
@@ -177,7 +177,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Set<Pet>> findPetsByTagsWithHttpInfo(@Param("tags") Set<String> tags);
@@ -201,7 +201,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Set<Pet> findPetsByTags(@QueryMap(encoded=true) FindPetsByTagsQueryParams queryParams);
@@ -221,7 +221,7 @@ public interface PetApi extends ApiClient.Api {
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Set<Pet>> findPetsByTagsWithHttpInfo(@QueryMap(encoded=true) FindPetsByTagsQueryParams queryParams);
@@ -245,7 +245,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/{petId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Pet getPetById(@Param("petId") Long petId);
@@ -258,7 +258,7 @@ public interface PetApi extends ApiClient.Api {
*/
@RequestLine("GET /pet/{petId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Pet> getPetByIdWithHttpInfo(@Param("petId") Long petId);

View File

@@ -74,7 +74,7 @@ public interface StoreApi extends ApiClient.Api {
*/
@RequestLine("GET /store/order/{orderId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
Order getOrderById(@Param("orderId") Long orderId);
@@ -87,7 +87,7 @@ public interface StoreApi extends ApiClient.Api {
*/
@RequestLine("GET /store/order/{orderId}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Order> getOrderByIdWithHttpInfo(@Param("orderId") Long orderId);
@@ -102,7 +102,7 @@ public interface StoreApi extends ApiClient.Api {
@RequestLine("POST /store/order")
@Headers({
"Content-Type: application/json",
"Accept: application/json",
"Accept: application/json,application/xml",
})
Order placeOrder(Order order);
@@ -116,7 +116,7 @@ public interface StoreApi extends ApiClient.Api {
@RequestLine("POST /store/order")
@Headers({
"Content-Type: application/json",
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<Order> placeOrderWithHttpInfo(Order order);

View File

@@ -131,7 +131,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/{username}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
User getUserByName(@Param("username") String username);
@@ -144,7 +144,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/{username}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<User> getUserByNameWithHttpInfo(@Param("username") String username);
@@ -159,7 +159,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
String loginUser(@Param("username") String username, @Param("password") String password);
@@ -173,7 +173,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<String> loginUserWithHttpInfo(@Param("username") String username, @Param("password") String password);
@@ -196,7 +196,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
String loginUser(@QueryMap(encoded=true) LoginUserQueryParams queryParams);
@@ -215,7 +215,7 @@ public interface UserApi extends ApiClient.Api {
*/
@RequestLine("GET /user/login?username={username}&password={password}")
@Headers({
"Accept: application/json",
"Accept: application/json,application/xml",
})
ApiResponse<String> loginUserWithHttpInfo(@QueryMap(encoded=true) LoginUserQueryParams queryParams);

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -140,7 +140,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -182,7 +182,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -247,7 +247,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -360,7 +360,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -417,7 +417,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -516,7 +516,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -140,7 +140,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -182,7 +182,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -247,7 +247,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -360,7 +360,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -417,7 +417,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -516,7 +516,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -140,7 +140,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -182,7 +182,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -247,7 +247,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -360,7 +360,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -417,7 +417,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -516,7 +516,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -340,7 +340,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -397,7 +397,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -511,7 +511,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -578,7 +578,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
operationId: updatePet
@@ -76,7 +76,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -120,7 +120,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -160,7 +160,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -225,7 +225,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm

View File

@@ -101,7 +101,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -141,7 +141,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -206,7 +206,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -319,7 +319,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -376,7 +376,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -490,7 +490,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -557,7 +557,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -137,7 +137,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -178,7 +178,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -243,7 +243,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -356,7 +356,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -413,7 +413,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -575,7 +575,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -273,7 +273,7 @@ public class PetApi {
public FindPetsByStatusOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -348,7 +348,7 @@ public class PetApi {
public FindPetsByTagsOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -421,7 +421,7 @@ public class PetApi {
public GetPetByIdOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -232,7 +232,7 @@ public class StoreApi {
public GetOrderByIdOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -306,7 +306,7 @@ public class StoreApi {
public PlaceOrderOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setContentType("*/*");
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -375,7 +375,7 @@ public class UserApi {
public GetUserByNameOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -449,7 +449,7 @@ public class UserApi {
public LoginUserOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -274,7 +274,7 @@ public class PetApi {
public FindPetsByStatusOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -349,7 +349,7 @@ public class PetApi {
public FindPetsByTagsOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -422,7 +422,7 @@ public class PetApi {
public GetPetByIdOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -233,7 +233,7 @@ public class StoreApi {
public GetOrderByIdOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -307,7 +307,7 @@ public class StoreApi {
public PlaceOrderOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setContentType("*/*");
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -376,7 +376,7 @@ public class UserApi {
public GetUserByNameOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}
@@ -450,7 +450,7 @@ public class UserApi {
public LoginUserOper(RequestSpecBuilder reqSpec) {
this.reqSpec = reqSpec;
reqSpec.setAccept("application/json");
reqSpec.setAccept("application/json,application/xml");
this.respSpec = new ResponseSpecBuilder();
}

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -172,7 +172,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
operationId: deletePet
@@ -235,7 +235,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
operationId: updatePetWithForm
parameters:
@@ -344,7 +344,7 @@ paths:
- store
x-codegen-request-body-name: body
x-content-type: '*/*'
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -401,7 +401,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -510,7 +510,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
operationId: logoutUser
@@ -572,7 +572,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -158,7 +158,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -203,7 +203,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -271,7 +271,7 @@ paths:
tags:
- pet
x-webclient-blocking: true
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -387,7 +387,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -444,7 +444,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -543,7 +543,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -606,7 +606,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -126,7 +126,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -164,7 +164,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -201,7 +201,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -155,7 +155,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -185,7 +185,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -218,7 +218,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -56,7 +56,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -127,7 +127,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -165,7 +165,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -200,7 +200,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -242,7 +242,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -111,7 +111,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -141,7 +141,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -173,7 +173,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -204,7 +204,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -124,7 +124,7 @@ public interface PetController {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -164,7 +164,7 @@ public interface PetController {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -200,7 +200,7 @@ public interface PetController {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(

View File

@@ -111,7 +111,7 @@ public interface StoreController {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -140,7 +140,7 @@ public interface StoreController {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> placeOrder(

View File

@@ -155,7 +155,7 @@ public interface UserController {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -185,7 +185,7 @@ public interface UserController {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -56,7 +56,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -127,7 +127,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -165,7 +165,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -200,7 +200,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -242,7 +242,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -111,7 +111,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -141,7 +141,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -173,7 +173,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -204,7 +204,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -77,7 +77,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/findByStatus",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<Flux<Pet>>> findPetsByStatus(
@RequestParam(value = "status", required = true) List<String> status
@@ -97,7 +97,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/findByTags",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<Flux<Pet>>> findPetsByTags(
@RequestParam(value = "tags", required = true) Set<String> tags
@@ -116,7 +116,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/{petId}",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<Pet>> getPetById(
@PathVariable("petId") Long petId

View File

@@ -71,7 +71,7 @@ public interface StoreApi {
@HttpExchange(
method = "GET",
value = "/store/order/{order_id}",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<Order>> getOrderById(
@PathVariable("order_id") Long orderId
@@ -89,7 +89,7 @@ public interface StoreApi {
@HttpExchange(
method = "POST",
value = "/store/order",
accept = "application/json",
accept = "application/json,application/xml",
contentType = "application/json"
)
Mono<ResponseEntity<Order>> placeOrder(

View File

@@ -109,7 +109,7 @@ public interface UserApi {
@HttpExchange(
method = "GET",
value = "/user/{username}",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<User>> getUserByName(
@PathVariable("username") String username
@@ -128,7 +128,7 @@ public interface UserApi {
@HttpExchange(
method = "GET",
value = "/user/login",
accept = "application/json"
accept = "application/json,application/xml"
)
Mono<ResponseEntity<String>> loginUser(
@RequestParam(value = "username", required = true) String username,

View File

@@ -73,7 +73,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/findByStatus",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<List<PetDto>> findPetsByStatus(
@RequestParam(value = "status", required = true) List<String> status
@@ -93,7 +93,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/findByTags",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<Set<PetDto>> findPetsByTags(
@RequestParam(value = "tags", required = true) Set<String> tags
@@ -112,7 +112,7 @@ public interface PetApi {
@HttpExchange(
method = "GET",
value = "/pet/{petId}",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<PetDto> getPetById(
@PathVariable("petId") Long petId

View File

@@ -67,7 +67,7 @@ public interface StoreApi {
@HttpExchange(
method = "GET",
value = "/store/order/{order_id}",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<OrderDto> getOrderById(
@PathVariable("order_id") Long orderId
@@ -85,7 +85,7 @@ public interface StoreApi {
@HttpExchange(
method = "POST",
value = "/store/order",
accept = "application/json",
accept = "application/json,application/xml",
contentType = "application/json"
)
ResponseEntity<OrderDto> placeOrder(

View File

@@ -105,7 +105,7 @@ public interface UserApi {
@HttpExchange(
method = "GET",
value = "/user/{username}",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<UserDto> getUserByName(
@PathVariable("username") String username
@@ -124,7 +124,7 @@ public interface UserApi {
@HttpExchange(
method = "GET",
value = "/user/login",
accept = "application/json"
accept = "application/json,application/xml"
)
ResponseEntity<String> loginUser(
@RequestParam(value = "username", required = true) String username,

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: ""
externalDocs:
@@ -79,7 +79,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByStatus:
get:
description: Multiple status values can be provided with comma separated strings
@@ -123,7 +123,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -163,7 +163,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -228,7 +228,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -341,7 +341,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{orderId}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -512,7 +512,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -140,7 +140,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/findByTags:
get:
deprecated: true
@@ -182,7 +182,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
/pet/{petId}:
delete:
description: ""
@@ -247,7 +247,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
post:
description: ""
operationId: updatePetWithForm
@@ -360,7 +360,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
/store/order/{order_id}:
delete:
description: For valid response try integer IDs with value < 1000. Anything
@@ -417,7 +417,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user:
post:
description: This can only be done by the logged in user.
@@ -516,7 +516,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
/user/logout:
get:
description: ""
@@ -579,7 +579,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
put:
description: This can only be done by the logged in user.
operationId: updateUser

View File

@@ -37,7 +37,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -76,7 +76,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -97,7 +97,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -117,7 +117,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -140,7 +140,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -73,7 +73,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -92,7 +92,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -110,7 +110,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -130,7 +130,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -65,7 +65,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -132,7 +132,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -170,7 +170,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -207,7 +207,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -249,7 +249,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -155,7 +155,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -185,7 +185,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -218,7 +218,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -66,7 +66,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -133,7 +133,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<List<Pet>>> findPetsByStatus(
@@ -171,7 +171,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<List<Pet>>> findPetsByTags(
@@ -208,7 +208,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<Pet>> getPetById(
@@ -250,7 +250,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -124,7 +124,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<Order>> getOrderById(
@@ -156,7 +156,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -186,7 +186,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<User>> getUserByName(
@@ -219,7 +219,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
CompletableFuture<ResponseEntity<String>> loginUser(

View File

@@ -64,7 +64,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -132,7 +132,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -170,7 +170,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Set<Pet>> findPetsByTags(
@@ -207,7 +207,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{order_id}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -155,7 +155,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -173,7 +173,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -206,7 +206,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -124,7 +124,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -163,7 +163,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -201,7 +201,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -153,7 +153,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> placeOrder(

View File

@@ -164,7 +164,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -195,7 +195,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -65,7 +65,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -132,7 +132,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -170,7 +170,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -207,7 +207,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -249,7 +249,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -155,7 +155,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -185,7 +185,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -218,7 +218,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -65,7 +65,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -132,7 +132,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByStatus(
@@ -170,7 +170,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<List<Pet>> findPetsByTags(
@@ -207,7 +207,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Pet> getPetById(
@@ -249,7 +249,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -123,7 +123,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<Order> getOrderById(
@@ -155,7 +155,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -185,7 +185,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<User> getUserByName(
@@ -218,7 +218,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
ResponseEntity<String> loginUser(

View File

@@ -69,7 +69,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)
@@ -156,7 +156,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByStatus",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<List<Pet>> findPetsByStatus(
@@ -211,7 +211,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/findByTags",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<List<Pet>> findPetsByTags(
@@ -265,7 +265,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/pet/{petId}",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<Pet> getPetById(
@@ -324,7 +324,7 @@ public interface PetApi {
@RequestMapping(
method = RequestMethod.PUT,
value = "/pet",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -133,7 +133,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/store/order/{orderId}",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<Order> getOrderById(
@@ -182,7 +182,7 @@ public interface StoreApi {
@RequestMapping(
method = RequestMethod.POST,
value = "/store/order",
produces = "application/json",
produces = "application/json,application/xml",
consumes = "application/json"
)

View File

@@ -201,7 +201,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/{username}",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<User> getUserByName(
@@ -251,7 +251,7 @@ public interface UserApi {
@RequestMapping(
method = RequestMethod.GET,
value = "/user/login",
produces = "application/json"
produces = "application/json,application/xml"
)
default ResponseEntity<String> loginUser(

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
put:
@@ -81,7 +81,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByStatus:
@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -169,7 +169,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -238,7 +238,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -359,7 +359,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{orderId}:
@@ -420,7 +420,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -542,7 +542,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -615,7 +615,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
put:
@@ -81,7 +81,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByStatus:
@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -169,7 +169,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -238,7 +238,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -359,7 +359,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{orderId}:
@@ -420,7 +420,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -542,7 +542,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -615,7 +615,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

View File

@@ -108,7 +108,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -154,7 +154,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -225,7 +225,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -346,7 +346,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{order_id}:
@@ -407,7 +407,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -514,7 +514,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -583,7 +583,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

View File

@@ -108,7 +108,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -154,7 +154,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -225,7 +225,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -346,7 +346,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{order_id}:
@@ -407,7 +407,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -514,7 +514,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -583,7 +583,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
put:
@@ -81,7 +81,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByStatus:
@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -169,7 +169,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -238,7 +238,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -359,7 +359,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{orderId}:
@@ -420,7 +420,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -542,7 +542,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -615,7 +615,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

View File

@@ -46,7 +46,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
put:
@@ -81,7 +81,7 @@ paths:
tags:
- pet
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByStatus:
@@ -127,7 +127,7 @@ paths:
summary: Finds Pets by status
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/findByTags:
@@ -169,7 +169,7 @@ paths:
summary: Finds Pets by tags
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
/pet/{petId}:
@@ -238,7 +238,7 @@ paths:
summary: Find pet by ID
tags:
- pet
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: pet
post:
@@ -359,7 +359,7 @@ paths:
tags:
- store
x-content-type: application/json
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/store/order/{orderId}:
@@ -420,7 +420,7 @@ paths:
summary: Find purchase order by ID
tags:
- store
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: store
/user:
@@ -542,7 +542,7 @@ paths:
summary: Logs user into the system
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
/user/logout:
@@ -615,7 +615,7 @@ paths:
summary: Get user by user name
tags:
- user
x-accepts: application/json
x-accepts: "application/json,application/xml"
x-tags:
- tag: user
put:

Some files were not shown because too many files have changed in this diff Show More