mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-19 07:47:09 +00:00
[Spring] Remove unnecessary modifiers from API interface templates (#22132)
* public static final String PATH_ * regenerate samples
This commit is contained in:
@@ -132,7 +132,7 @@ public interface {{classname}} {
|
||||
{{/jdk8-default-interface}}
|
||||
{{#operation}}
|
||||
|
||||
public static final String PATH_{{#lambda.uppercase}}{{#lambda.snakecase}}{{{operationId}}}{{/lambda.snakecase}}{{/lambda.uppercase}} = "{{{path}}}";
|
||||
String PATH_{{#lambda.uppercase}}{{#lambda.snakecase}}{{{operationId}}}{{/lambda.snakecase}}{{/lambda.uppercase}} = "{{{path}}}";
|
||||
/**
|
||||
* {{httpMethod}} {{{path}}}{{#summary}} : {{.}}{{/summary}}
|
||||
{{#notes}}
|
||||
|
||||
@@ -1171,7 +1171,7 @@ public class SpringCodegenTest {
|
||||
// Check that the @RequestMapping annotation is generated in the Api file
|
||||
JavaFileAssert.assertThat(files.get("PetApi.java"))
|
||||
.fileContains("@RequestMapping(\"${openapi.openAPIPetstore.base-path:/v2}\")",
|
||||
"public static final String PATH_ADD_PET = \"/pet\";",
|
||||
"String PATH_ADD_PET = \"/pet\";",
|
||||
"value = PetApi.PATH_ADD_PET");
|
||||
|
||||
// Check that the @RequestMapping annotation is not generated in the Controller file
|
||||
|
||||
@@ -21,7 +21,7 @@ import javax.annotation.Generated;
|
||||
@Validated
|
||||
public interface SomeApi {
|
||||
|
||||
public static final String PATH_SOME_ENDPOINT_GET = "/some/endpoint";
|
||||
String PATH_SOME_ENDPOINT_GET = "/some/endpoint";
|
||||
/**
|
||||
* GET /some/endpoint
|
||||
*
|
||||
|
||||
@@ -27,7 +27,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "Default", description = "the Default API")
|
||||
public interface DefaultApi {
|
||||
|
||||
public static final String PATH_GET = "/thingy/{date}";
|
||||
String PATH_GET = "/thingy/{date}";
|
||||
/**
|
||||
* GET /thingy/{date}
|
||||
*
|
||||
@@ -57,7 +57,7 @@ public interface DefaultApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/thingy/{date}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/thingy/{date}";
|
||||
/**
|
||||
* POST /thingy/{date}
|
||||
* update with form data
|
||||
|
||||
@@ -37,7 +37,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -67,7 +67,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -98,7 +98,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -133,7 +133,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -171,7 +171,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -208,7 +208,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -242,7 +242,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -276,7 +276,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -66,7 +66,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -96,7 +96,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -126,7 +126,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -157,7 +157,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -191,7 +191,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -225,7 +225,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -253,7 +253,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -26,7 +26,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -63,7 +63,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -133,7 +133,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -171,7 +171,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -206,7 +206,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -249,7 +249,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -286,7 +286,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -53,7 +53,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -84,7 +84,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -116,7 +116,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -55,7 +55,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -85,7 +85,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -115,7 +115,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -146,7 +146,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -178,7 +178,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -210,7 +210,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -238,7 +238,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -28,7 +28,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "pet tag", description = "the pet tag API")
|
||||
public interface PetController {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -60,7 +60,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -93,7 +93,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -131,7 +131,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -171,7 +171,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -206,7 +206,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -242,7 +242,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -278,7 +278,7 @@ public interface PetController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "store tag", description = "the store tag API")
|
||||
public interface StoreController {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -53,7 +53,7 @@ public interface StoreController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -84,7 +84,7 @@ public interface StoreController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -116,7 +116,7 @@ public interface StoreController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "user tag", description = "the user tag API")
|
||||
public interface UserController {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -51,7 +51,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -76,7 +76,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -101,7 +101,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -129,7 +129,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -160,7 +160,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -191,7 +191,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -215,7 +215,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER_OPTIONS = "/user/logout";
|
||||
String PATH_LOGOUT_USER_OPTIONS = "/user/logout";
|
||||
/**
|
||||
* OPTIONS /user/logout : logoutUserOptions
|
||||
*
|
||||
@@ -239,7 +239,7 @@ public interface UserController {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -26,7 +26,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -63,7 +63,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -133,7 +133,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -171,7 +171,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -206,7 +206,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -249,7 +249,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -286,7 +286,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -53,7 +53,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -84,7 +84,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -116,7 +116,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -25,7 +25,7 @@ import javax.annotation.Generated;
|
||||
@Api(value = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -55,7 +55,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -85,7 +85,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -115,7 +115,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -146,7 +146,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -178,7 +178,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -210,7 +210,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -238,7 +238,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -24,7 +24,7 @@ import jakarta.annotation.Generated;
|
||||
@Validated
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -44,7 +44,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -63,7 +63,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -82,7 +82,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -103,7 +103,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -123,7 +123,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -147,7 +147,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -169,7 +169,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -23,7 +23,7 @@ import jakarta.annotation.Generated;
|
||||
@Validated
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -41,7 +41,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -58,7 +58,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -78,7 +78,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -23,7 +23,7 @@ import jakarta.annotation.Generated;
|
||||
@Validated
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -41,7 +41,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -59,7 +59,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -77,7 +77,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -95,7 +95,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -115,7 +115,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -136,7 +136,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -152,7 +152,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -37,7 +37,7 @@ import jakarta.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -73,7 +73,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -104,7 +104,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -139,7 +139,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -177,7 +177,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -214,7 +214,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -257,7 +257,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -291,7 +291,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import jakarta.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import jakarta.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -66,7 +66,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -96,7 +96,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -126,7 +126,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -157,7 +157,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -191,7 +191,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -225,7 +225,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -253,7 +253,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -38,7 +38,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -74,7 +74,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -105,7 +105,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -140,7 +140,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -178,7 +178,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -215,7 +215,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -258,7 +258,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -292,7 +292,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -37,7 +37,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -65,7 +65,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -96,7 +96,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -130,7 +130,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -37,7 +37,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -67,7 +67,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -127,7 +127,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -158,7 +158,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -192,7 +192,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -226,7 +226,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -254,7 +254,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -38,7 +38,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "Default", description = "the Default API")
|
||||
public interface DefaultApi {
|
||||
|
||||
public static final String PATH_GET = "/thingy/{date}";
|
||||
String PATH_GET = "/thingy/{date}";
|
||||
/**
|
||||
* GET /thingy/{date}
|
||||
*
|
||||
@@ -66,7 +66,7 @@ public interface DefaultApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/thingy/{date}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/thingy/{date}";
|
||||
/**
|
||||
* POST /thingy/{date}
|
||||
* update with form data
|
||||
|
||||
@@ -35,7 +35,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
|
||||
@@ -35,7 +35,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "$another-fake?", description = "the $another-fake? API")
|
||||
public interface AnotherFakeApi {
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -46,7 +46,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "fake", description = "the fake API")
|
||||
public interface FakeApi {
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -73,7 +73,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -102,7 +102,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -131,7 +131,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -160,7 +160,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -189,7 +189,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -215,7 +215,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -241,7 +241,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -271,7 +271,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -329,7 +329,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -372,7 +372,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -408,7 +408,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -435,7 +435,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -464,7 +464,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -491,7 +491,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -522,7 +522,7 @@ public interface FakeApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
|
||||
@@ -35,7 +35,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "fake_classname_tags 123#$%^", description = "the fake_classname_tags 123#$%^ API")
|
||||
public interface FakeClassnameTags123Api {
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -39,7 +39,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -71,7 +71,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -104,7 +104,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -139,7 +139,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -177,7 +177,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -214,7 +214,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -240,7 +240,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -276,7 +276,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -310,7 +310,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
@@ -347,7 +347,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -63,7 +63,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -90,7 +90,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -117,7 +117,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -145,7 +145,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -179,7 +179,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -213,7 +213,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -238,7 +238,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -39,7 +39,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -67,7 +67,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -96,7 +96,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -132,7 +132,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -173,7 +173,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -210,7 +210,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -242,7 +242,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -274,7 +274,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -62,7 +62,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -86,7 +86,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -110,7 +110,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -138,7 +138,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -170,7 +170,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -202,7 +202,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -225,7 +225,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER_OPTIONS = "/user/logout";
|
||||
String PATH_LOGOUT_USER_OPTIONS = "/user/logout";
|
||||
/**
|
||||
* OPTIONS /user/logout : logoutUserOptions
|
||||
*
|
||||
@@ -248,7 +248,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -37,7 +37,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -73,7 +73,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -104,7 +104,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -139,7 +139,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -177,7 +177,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -214,7 +214,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -257,7 +257,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -291,7 +291,7 @@ public interface PetApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -66,7 +66,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -96,7 +96,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -126,7 +126,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -157,7 +157,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -191,7 +191,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -225,7 +225,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -253,7 +253,7 @@ public interface UserApi {
|
||||
);
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -37,7 +37,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -73,7 +73,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -104,7 +104,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -139,7 +139,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -177,7 +177,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -214,7 +214,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -257,7 +257,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -291,7 +291,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -66,7 +66,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -96,7 +96,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -126,7 +126,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -157,7 +157,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -191,7 +191,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -225,7 +225,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -253,7 +253,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -131,7 +131,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -183,7 +183,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -238,7 +238,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -292,7 +292,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -352,7 +352,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -389,7 +389,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -74,7 +74,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -108,7 +108,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -159,7 +159,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -76,7 +76,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -109,7 +109,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -142,7 +142,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -176,7 +176,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -227,7 +227,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -264,7 +264,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -295,7 +295,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface BarApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_BAR = "/bar";
|
||||
String PATH_CREATE_BAR = "/bar";
|
||||
/**
|
||||
* POST /bar : Create a Bar
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FooApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_FOO = "/foo";
|
||||
String PATH_CREATE_FOO = "/foo";
|
||||
/**
|
||||
* POST /foo : Create a Foo
|
||||
*
|
||||
@@ -84,7 +84,7 @@ public interface FooApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ALL_FOOS = "/foo";
|
||||
String PATH_GET_ALL_FOOS = "/foo";
|
||||
/**
|
||||
* GET /foo : GET all Foos
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface BarApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_BAR = "/bar";
|
||||
String PATH_CREATE_BAR = "/bar";
|
||||
/**
|
||||
* POST /bar : Create a Bar
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FooApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_FOO = "/foo";
|
||||
String PATH_CREATE_FOO = "/foo";
|
||||
/**
|
||||
* POST /foo : Create a Foo
|
||||
*
|
||||
@@ -84,7 +84,7 @@ public interface FooApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ALL_FOOS = "/foo";
|
||||
String PATH_GET_ALL_FOOS = "/foo";
|
||||
/**
|
||||
* GET /foo : GET all Foos
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface BarApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_BAR = "/bar";
|
||||
String PATH_CREATE_BAR = "/bar";
|
||||
/**
|
||||
* POST /bar : Create a Bar
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FooApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_FOO = "/foo";
|
||||
String PATH_CREATE_FOO = "/foo";
|
||||
/**
|
||||
* POST /foo : Create a Foo
|
||||
*
|
||||
@@ -84,7 +84,7 @@ public interface FooApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ALL_FOOS = "/foo";
|
||||
String PATH_GET_ALL_FOOS = "/foo";
|
||||
/**
|
||||
* GET /foo : GET all Foos
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -131,7 +131,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -183,7 +183,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -238,7 +238,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -292,7 +292,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -352,7 +352,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -389,7 +389,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -74,7 +74,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -108,7 +108,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -159,7 +159,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -76,7 +76,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -109,7 +109,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -142,7 +142,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -176,7 +176,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -227,7 +227,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -264,7 +264,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -295,7 +295,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -131,7 +131,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -183,7 +183,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -238,7 +238,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -292,7 +292,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -352,7 +352,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -389,7 +389,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -74,7 +74,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -108,7 +108,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -159,7 +159,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -76,7 +76,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -109,7 +109,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -142,7 +142,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -176,7 +176,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -227,7 +227,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -264,7 +264,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -295,7 +295,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -38,7 +38,7 @@ public interface AnotherFakeApi {
|
||||
return new AnotherFakeApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -51,7 +51,7 @@ public interface FakeApi {
|
||||
return new FakeApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -80,7 +80,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -111,7 +111,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -142,7 +142,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -173,7 +173,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -204,7 +204,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -232,7 +232,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -260,7 +260,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -288,7 +288,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -320,7 +320,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -380,7 +380,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -425,7 +425,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -463,7 +463,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -492,7 +492,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -523,7 +523,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -552,7 +552,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -585,7 +585,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -614,7 +614,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -38,7 +38,7 @@ public interface FakeClassnameTestApi {
|
||||
return new FakeClassnameTestApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -41,7 +41,7 @@ public interface PetApi {
|
||||
return new PetApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -75,7 +75,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -110,7 +110,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -147,7 +147,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -187,7 +187,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -226,7 +226,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -264,7 +264,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -300,7 +300,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -39,7 +39,7 @@ public interface StoreApi {
|
||||
return new StoreApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -69,7 +69,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -102,7 +102,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -138,7 +138,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -39,7 +39,7 @@ public interface UserApi {
|
||||
return new UserApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -68,7 +68,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -97,7 +97,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -126,7 +126,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -156,7 +156,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -192,7 +192,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -228,7 +228,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -255,7 +255,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -42,7 +42,7 @@ public interface AnotherFakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -55,7 +55,7 @@ public interface FakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -85,7 +85,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -117,7 +117,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -158,7 +158,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -190,7 +190,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -222,7 +222,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -260,7 +260,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -289,7 +289,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -318,7 +318,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -360,7 +360,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -421,7 +421,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -467,7 +467,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -506,7 +506,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -536,7 +536,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -568,7 +568,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -598,7 +598,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -632,7 +632,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -671,7 +671,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -42,7 +42,7 @@ public interface FakeClassnameTestApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -45,7 +45,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -80,7 +80,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -117,7 +117,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -169,7 +169,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -224,7 +224,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -278,7 +278,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -317,7 +317,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -354,7 +354,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -74,7 +74,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -108,7 +108,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -159,7 +159,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -73,7 +73,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -103,7 +103,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -133,7 +133,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -164,7 +164,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -215,7 +215,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -252,7 +252,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -280,7 +280,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -68,7 +68,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -90,7 +90,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -126,7 +126,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -164,7 +164,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -201,7 +201,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -242,7 +242,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -267,7 +267,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -30,7 +30,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -51,7 +51,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -71,7 +71,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -108,7 +108,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -30,7 +30,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -51,7 +51,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -72,7 +72,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -93,7 +93,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -114,7 +114,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -151,7 +151,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -175,7 +175,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -194,7 +194,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -45,7 +45,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -98,7 +98,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -132,7 +132,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -184,7 +184,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -239,7 +239,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -293,7 +293,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -353,7 +353,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -390,7 +390,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{orderId}";
|
||||
/**
|
||||
* DELETE /store/order/{orderId} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -75,7 +75,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -109,7 +109,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{orderId}";
|
||||
/**
|
||||
* GET /store/order/{orderId} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -160,7 +160,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -77,7 +77,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -110,7 +110,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -143,7 +143,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -177,7 +177,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -228,7 +228,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -265,7 +265,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -296,7 +296,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -35,7 +35,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "$another-fake?", description = "the $another-fake? API")
|
||||
public interface AnotherFakeApi {
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -48,7 +48,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "fake", description = "the fake API")
|
||||
public interface FakeApi {
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -75,7 +75,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -104,7 +104,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -133,7 +133,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -162,7 +162,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -191,7 +191,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -217,7 +217,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -243,7 +243,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -269,7 +269,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -299,7 +299,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -357,7 +357,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -400,7 +400,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -436,7 +436,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -463,7 +463,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -492,7 +492,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -519,7 +519,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -550,7 +550,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -577,7 +577,7 @@ public interface FakeApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -35,7 +35,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "fake_classname_tags 123#$%^", description = "the fake_classname_tags 123#$%^ API")
|
||||
public interface FakeClassnameTestApi {
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -38,7 +38,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "pet", description = "Everything about your Pets")
|
||||
public interface PetApi {
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -70,7 +70,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -103,7 +103,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -138,7 +138,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -176,7 +176,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -213,7 +213,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -249,7 +249,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -283,7 +283,7 @@ public interface PetApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "store", description = "Access to Petstore orders")
|
||||
public interface StoreApi {
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -64,7 +64,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -95,7 +95,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -129,7 +129,7 @@ public interface StoreApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -36,7 +36,7 @@ import javax.annotation.Generated;
|
||||
@Tag(name = "user", description = "Operations about user")
|
||||
public interface UserApi {
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -63,7 +63,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -90,7 +90,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -117,7 +117,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -145,7 +145,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -179,7 +179,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -213,7 +213,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -238,7 +238,7 @@ public interface UserApi {
|
||||
) throws Exception;
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -43,7 +43,7 @@ public interface NullableApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_NULLABLE_TEST = "/nullable";
|
||||
String PATH_NULLABLE_TEST = "/nullable";
|
||||
/**
|
||||
* POST /nullable
|
||||
* nullable test
|
||||
|
||||
@@ -40,7 +40,7 @@ public interface DogsApi {
|
||||
return new DogsApiDelegate() {};
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_DOG = "/dogs";
|
||||
String PATH_CREATE_DOG = "/dogs";
|
||||
/**
|
||||
* POST /dogs : Create a dog
|
||||
*
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface AnotherFakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -74,7 +74,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -106,7 +106,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -147,7 +147,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -179,7 +179,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -211,7 +211,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -250,7 +250,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -280,7 +280,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -311,7 +311,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -352,7 +352,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -413,7 +413,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -459,7 +459,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -498,7 +498,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -528,7 +528,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -560,7 +560,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -590,7 +590,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -625,7 +625,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -664,7 +664,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface FakeClassnameTestApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -34,7 +34,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -72,7 +72,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -111,7 +111,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -165,7 +165,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -221,7 +221,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -273,7 +273,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -315,7 +315,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -355,7 +355,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -32,7 +32,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -63,7 +63,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -97,7 +97,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -146,7 +146,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -32,7 +32,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -62,7 +62,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -92,7 +92,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -122,7 +122,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -153,7 +153,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -202,7 +202,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -237,7 +237,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -265,7 +265,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface AnotherFakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -74,7 +74,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -106,7 +106,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -147,7 +147,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -179,7 +179,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -211,7 +211,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -250,7 +250,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -280,7 +280,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -311,7 +311,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -352,7 +352,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -413,7 +413,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -459,7 +459,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -498,7 +498,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -528,7 +528,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -560,7 +560,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -590,7 +590,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -625,7 +625,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -664,7 +664,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface FakeClassnameTestApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -34,7 +34,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -72,7 +72,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -111,7 +111,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -165,7 +165,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -221,7 +221,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -273,7 +273,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -315,7 +315,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -355,7 +355,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -32,7 +32,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -63,7 +63,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -97,7 +97,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -146,7 +146,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
@@ -32,7 +32,7 @@ public interface UserApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_USER = "/user";
|
||||
String PATH_CREATE_USER = "/user";
|
||||
/**
|
||||
* POST /user : Create user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -62,7 +62,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
String PATH_CREATE_USERS_WITH_ARRAY_INPUT = "/user/createWithArray";
|
||||
/**
|
||||
* POST /user/createWithArray : Creates list of users with given input array
|
||||
*
|
||||
@@ -92,7 +92,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
String PATH_CREATE_USERS_WITH_LIST_INPUT = "/user/createWithList";
|
||||
/**
|
||||
* POST /user/createWithList : Creates list of users with given input array
|
||||
*
|
||||
@@ -122,7 +122,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_USER = "/user/{username}";
|
||||
String PATH_DELETE_USER = "/user/{username}";
|
||||
/**
|
||||
* DELETE /user/{username} : Delete user
|
||||
* This can only be done by the logged in user.
|
||||
@@ -153,7 +153,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
String PATH_GET_USER_BY_NAME = "/user/{username}";
|
||||
/**
|
||||
* GET /user/{username} : Get user by user name
|
||||
*
|
||||
@@ -202,7 +202,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGIN_USER = "/user/login";
|
||||
String PATH_LOGIN_USER = "/user/login";
|
||||
/**
|
||||
* GET /user/login : Logs user into the system
|
||||
*
|
||||
@@ -237,7 +237,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_LOGOUT_USER = "/user/logout";
|
||||
String PATH_LOGOUT_USER = "/user/logout";
|
||||
/**
|
||||
* GET /user/logout : Logs out current logged in user session
|
||||
*
|
||||
@@ -265,7 +265,7 @@ public interface UserApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_USER = "/user/{username}";
|
||||
String PATH_UPDATE_USER = "/user/{username}";
|
||||
/**
|
||||
* PUT /user/{username} : Updated user
|
||||
* This can only be done by the logged in user.
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface AnotherFakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
String PATH_CALL123TEST_SPECIAL_TAGS = "/another-fake/dummy";
|
||||
/**
|
||||
* PATCH /another-fake/dummy : To test special tags
|
||||
* To test special tags and operation ID starting with number
|
||||
|
||||
@@ -44,7 +44,7 @@ public interface FakeApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
String PATH_CREATE_XML_ITEM = "/fake/create_xml_item";
|
||||
/**
|
||||
* POST /fake/create_xml_item : creates an XmlItem
|
||||
* this route creates an XmlItem
|
||||
@@ -74,7 +74,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
String PATH_FAKE_OUTER_BOOLEAN_SERIALIZE = "/fake/outer/boolean";
|
||||
/**
|
||||
* POST /fake/outer/boolean
|
||||
* Test serialization of outer boolean types
|
||||
@@ -106,7 +106,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
String PATH_FAKE_OUTER_COMPOSITE_SERIALIZE = "/fake/outer/composite";
|
||||
/**
|
||||
* POST /fake/outer/composite
|
||||
* Test serialization of object with outer number type
|
||||
@@ -147,7 +147,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
String PATH_FAKE_OUTER_NUMBER_SERIALIZE = "/fake/outer/number";
|
||||
/**
|
||||
* POST /fake/outer/number
|
||||
* Test serialization of outer number types
|
||||
@@ -179,7 +179,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
String PATH_FAKE_OUTER_STRING_SERIALIZE = "/fake/outer/string";
|
||||
/**
|
||||
* POST /fake/outer/string
|
||||
* Test serialization of outer string types
|
||||
@@ -211,7 +211,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
String PATH_RESPONSE_OBJECT_DIFFERENT_NAMES = "/fake/{petId}/response-object-different-names";
|
||||
/**
|
||||
* GET /fake/{petId}/response-object-different-names
|
||||
*
|
||||
@@ -250,7 +250,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
String PATH_TEST_BODY_WITH_FILE_SCHEMA = "/fake/body-with-file-schema";
|
||||
/**
|
||||
* PUT /fake/body-with-file-schema
|
||||
* For this test, the body for this request much reference a schema named `File`.
|
||||
@@ -280,7 +280,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
String PATH_TEST_BODY_WITH_QUERY_PARAMS = "/fake/body-with-query-params";
|
||||
/**
|
||||
* PUT /fake/body-with-query-params
|
||||
*
|
||||
@@ -311,7 +311,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
String PATH_TEST_CLIENT_MODEL = "/fake";
|
||||
/**
|
||||
* PATCH /fake : To test \"client\" model
|
||||
* To test \"client\" model
|
||||
@@ -352,7 +352,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENDPOINT_PARAMETERS = "/fake";
|
||||
/**
|
||||
* POST /fake : Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
|
||||
@@ -413,7 +413,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
String PATH_TEST_ENUM_PARAMETERS = "/fake";
|
||||
/**
|
||||
* GET /fake : To test enum parameters
|
||||
* To test enum parameters
|
||||
@@ -459,7 +459,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
String PATH_TEST_GROUP_PARAMETERS = "/fake";
|
||||
/**
|
||||
* DELETE /fake : Fake endpoint to test group parameters (optional)
|
||||
* Fake endpoint to test group parameters (optional)
|
||||
@@ -498,7 +498,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
String PATH_TEST_INLINE_ADDITIONAL_PROPERTIES = "/fake/inline-additionalProperties";
|
||||
/**
|
||||
* POST /fake/inline-additionalProperties : test inline additionalProperties
|
||||
*
|
||||
@@ -528,7 +528,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
String PATH_TEST_JSON_FORM_DATA = "/fake/jsonFormData";
|
||||
/**
|
||||
* GET /fake/jsonFormData : test json serialization of form data
|
||||
*
|
||||
@@ -560,7 +560,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
String PATH_TEST_NULLABLE = "/fake/nullable";
|
||||
/**
|
||||
* POST /fake/nullable : test nullable parent property
|
||||
*
|
||||
@@ -590,7 +590,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
String PATH_TEST_QUERY_PARAMETER_COLLECTION_FORMAT = "/fake/test-query-parameters";
|
||||
/**
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
@@ -625,7 +625,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
String PATH_TEST_WITH_RESULT_EXAMPLE = "/fake/response-with-example";
|
||||
/**
|
||||
* GET /fake/response-with-example
|
||||
* This endpoint defines an example value for its response schema.
|
||||
@@ -664,7 +664,7 @@ public interface FakeApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
String PATH_UPLOAD_FILE_WITH_REQUIRED_FILE = "/fake/{petId}/uploadImageWithRequiredFile";
|
||||
/**
|
||||
* POST /fake/{petId}/uploadImageWithRequiredFile : uploads an image (required)
|
||||
*
|
||||
|
||||
@@ -31,7 +31,7 @@ public interface FakeClassnameTestApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
String PATH_TEST_CLASSNAME = "/fake_classname_test";
|
||||
/**
|
||||
* PATCH /fake_classname_test : To test class name in snake case
|
||||
* To test class name in snake case
|
||||
|
||||
@@ -34,7 +34,7 @@ public interface PetApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_ADD_PET = "/pet";
|
||||
String PATH_ADD_PET = "/pet";
|
||||
/**
|
||||
* POST /pet : Add a new pet to the store
|
||||
*
|
||||
@@ -72,7 +72,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_DELETE_PET = "/pet/{petId}";
|
||||
String PATH_DELETE_PET = "/pet/{petId}";
|
||||
/**
|
||||
* DELETE /pet/{petId} : Deletes a pet
|
||||
*
|
||||
@@ -111,7 +111,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
String PATH_FIND_PETS_BY_STATUS = "/pet/findByStatus";
|
||||
/**
|
||||
* GET /pet/findByStatus : Finds Pets by status
|
||||
* Multiple status values can be provided with comma separated strings
|
||||
@@ -165,7 +165,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
String PATH_FIND_PETS_BY_TAGS = "/pet/findByTags";
|
||||
/**
|
||||
* GET /pet/findByTags : Finds Pets by tags
|
||||
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
|
||||
@@ -221,7 +221,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
String PATH_GET_PET_BY_ID = "/pet/{petId}";
|
||||
/**
|
||||
* GET /pet/{petId} : Find pet by ID
|
||||
* Returns a single pet
|
||||
@@ -273,7 +273,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET = "/pet";
|
||||
String PATH_UPDATE_PET = "/pet";
|
||||
/**
|
||||
* PUT /pet : Update an existing pet
|
||||
*
|
||||
@@ -315,7 +315,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
String PATH_UPDATE_PET_WITH_FORM = "/pet/{petId}";
|
||||
/**
|
||||
* POST /pet/{petId} : Updates a pet in the store with form data
|
||||
*
|
||||
@@ -355,7 +355,7 @@ public interface PetApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
String PATH_UPLOAD_FILE = "/pet/{petId}/uploadImage";
|
||||
/**
|
||||
* POST /pet/{petId}/uploadImage : uploads an image
|
||||
*
|
||||
|
||||
@@ -32,7 +32,7 @@ public interface StoreApi {
|
||||
return Optional.empty();
|
||||
}
|
||||
|
||||
public static final String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
String PATH_DELETE_ORDER = "/store/order/{order_id}";
|
||||
/**
|
||||
* DELETE /store/order/{order_id} : Delete purchase order by ID
|
||||
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
|
||||
@@ -63,7 +63,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_INVENTORY = "/store/inventory";
|
||||
String PATH_GET_INVENTORY = "/store/inventory";
|
||||
/**
|
||||
* GET /store/inventory : Returns pet inventories by status
|
||||
* Returns a map of status codes to quantities
|
||||
@@ -97,7 +97,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
String PATH_GET_ORDER_BY_ID = "/store/order/{order_id}";
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
@@ -146,7 +146,7 @@ public interface StoreApi {
|
||||
}
|
||||
|
||||
|
||||
public static final String PATH_PLACE_ORDER = "/store/order";
|
||||
String PATH_PLACE_ORDER = "/store/order";
|
||||
/**
|
||||
* POST /store/order : Place an order for a pet
|
||||
*
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user