[Java][Spring] use tag description from specification (#12000)

This commit is contained in:
Oleh Kurpiak
2022-03-30 11:43:28 +03:00
committed by GitHub
parent 5eacc0d09f
commit c71bc25aa2
95 changed files with 96 additions and 95 deletions

View File

@@ -662,6 +662,7 @@ public class SpringCodegen extends AbstractJavaCodegen
handleImplicitHeaders(operation);
}
objs.put("tagDescription", ops.get(0).tags.get(0).getDescription());
}
return objs;

View File

@@ -76,10 +76,10 @@ import javax.annotation.Generated;
@Controller
{{/useSpringController}}
{{#swagger2AnnotationLibrary}}
@Tag(name = "{{{baseName}}}", description = "the {{{baseName}}} API")
@Tag(name = "{{{baseName}}}", description = {{#tagDescription}}"{{{.}}}"{{/tagDescription}}{{^tagDescription}}"the {{{baseName}}} API"{{/tagDescription}})
{{/swagger2AnnotationLibrary}}
{{#swagger1AnnotationLibrary}}
@Api(value = "{{{baseName}}}", description = "the {{{baseName}}} API")
@Api(value = "{{{baseName}}}", description = {{#tagDescription}}"{{{.}}}"{{/tagDescription}}{{^tagDescription}}"the {{{baseName}}} API"{{/tagDescription}})
{{/swagger1AnnotationLibrary}}
{{#operations}}
{{#virtualService}}

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Pet", description = "the Pet API")
@Api(value = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Store", description = "the Store API")
@Api(value = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "User", description = "the User API")
@Api(value = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Pet", description = "the Pet API")
@Api(value = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Store", description = "the Store API")
@Api(value = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "User", description = "the User API")
@Api(value = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Pet", description = "the Pet API")
@Api(value = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "Store", description = "the Store API")
@Api(value = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "User", description = "the User API")
@Api(value = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Pet", description = "the Pet API")
@Tag(name = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Store", description = "the Store API")
@Tag(name = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -34,7 +34,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "User", description = "the User API")
@Tag(name = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Pet", description = "the Pet API")
@Tag(name = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Store", description = "the Store API")
@Tag(name = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "User", description = "the User API")
@Tag(name = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -34,7 +34,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Pet", description = "the Pet API")
@Tag(name = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Store", description = "the Store API")
@Tag(name = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "User", description = "the User API")
@Tag(name = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Pet", description = "the Pet API")
@Tag(name = "Pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "Store", description = "the Store API")
@Tag(name = "Store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "User", description = "the User API")
@Tag(name = "User", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -29,7 +29,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -28,7 +28,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -29,7 +29,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "pet", description = "the pet API")
@Tag(name = "pet", description = "Everything about your Pets")
public interface PetApi {
/**

View File

@@ -32,7 +32,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "store", description = "the store API")
@Tag(name = "store", description = "Access to Petstore orders")
public interface StoreApi {
/**

View File

@@ -33,7 +33,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Tag(name = "user", description = "the user API")
@Tag(name = "user", description = "Operations about user")
public interface UserApi {
/**

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -21,7 +21,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -21,7 +21,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -23,7 +23,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -21,7 +21,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -23,7 +23,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default PetApiDelegate getDelegate() {

View File

@@ -21,7 +21,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default StoreApiDelegate getDelegate() {

View File

@@ -22,7 +22,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default UserApiDelegate getDelegate() {

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -28,7 +28,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
@VirtualService
public interface PetApi {

View File

@@ -27,7 +27,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
@VirtualService
public interface StoreApi {

View File

@@ -28,7 +28,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
@VirtualService
public interface UserApi {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "pet", description = "the pet API")
@Api(value = "pet", description = "Everything about your Pets")
public interface PetApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -25,7 +25,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "store", description = "the store API")
@Api(value = "store", description = "Access to Petstore orders")
public interface StoreApi {
default Optional<NativeWebRequest> getRequest() {

View File

@@ -26,7 +26,7 @@ import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
@Validated
@Api(value = "user", description = "the user API")
@Api(value = "user", description = "Operations about user")
public interface UserApi {
default Optional<NativeWebRequest> getRequest() {