SYMBOL INDEX (879 symbols across 142 files) FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/SpringdocApplication.java class SpringdocApplication (line 24) | @SpringBootApplication method main (line 27) | public static void main(String[] args) { FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/controller/BookController.java class BookController (line 45) | @RestController method BookController (line 59) | public BookController(BookRepository repository) { method findById (line 69) | @GetMapping("/{id}") method findBooks (line 80) | @GetMapping("/") method updateBook (line 92) | @PutMapping("/{id}") method patchBook (line 105) | @PatchMapping("/{id}") method postBook (line 117) | @PostMapping("/") method headBook (line 128) | @RequestMapping(method = RequestMethod.HEAD, value = "/") method deleteBook (line 140) | @DeleteMapping("/{id}") FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/exception/BookNotFoundException.java class BookNotFoundException (line 21) | @SuppressWarnings("serial") method BookNotFoundException (line 24) | public BookNotFoundException() { FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/exception/GlobalControllerExceptionHandler.java class GlobalControllerExceptionHandler (line 31) | @RestControllerAdvice method handleConnversion (line 34) | @ExceptionHandler(ConversionFailedException.class) method handleBookNotFound (line 44) | @ExceptionHandler(BookNotFoundException.class) FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/model/Book.java class Book (line 27) | public class Book { method getId (line 53) | public long getId() { method setId (line 62) | public void setId(long id) { method getTitle (line 71) | public String getTitle() { method setTitle (line 80) | public void setTitle(String title) { method getAuthor (line 89) | public String getAuthor() { method setAuthor (line 98) | public void setAuthor(String author) { FILE: demo-book-service/src/main/java/org/springdoc/demo/services/book/repository/BookRepository.java class BookRepository (line 30) | @Repository method findById (line 35) | public Optional findById(long id) { method add (line 39) | public void add(Book book) { method getBooks (line 43) | public Collection getBooks() { FILE: demo-book-service/src/test/java/org/springdoc/demo/services/book/SwaggerUnitTest.java class SwaggerUnitTest (line 34) | @AutoConfigureMockMvc method shouldDisplaySwaggerUiPage (line 41) | @Test FILE: demo-microservices/config-service/src/main/java/org/springdoc/demo/services/config/ConfigApplication.java class ConfigApplication (line 7) | @SpringBootApplication method main (line 11) | public static void main(String[] args) { FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/DepartmentApplication.java class DepartmentApplication (line 14) | @SpringBootApplication method main (line 22) | public static void main(String[] args) { method repository (line 26) | @Bean FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/client/EmployeeClient.java type EmployeeClient (line 11) | @FeignClient(name = "employee-service") method findByDepartment (line 14) | @GetMapping("/department/{departmentId}") FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/controller/DepartmentController.java class DepartmentController (line 17) | @RestController method DepartmentController (line 26) | public DepartmentController(DepartmentRepository repository, EmployeeC... method add (line 31) | @PostMapping("/") method findById (line 37) | @GetMapping("/{id}") method findAll (line 43) | @GetMapping("/") method findByOrganization (line 49) | @GetMapping("/organization/{organizationId}") method findByOrganizationWithEmployees (line 55) | @GetMapping("/organization/{organizationId}/with-employees") FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/model/Department.java class Department (line 6) | public class Department { method Department (line 16) | public Department() { method Department (line 20) | public Department(Long organizationId, String name) { method getId (line 26) | public Long getId() { method setId (line 30) | public void setId(Long id) { method getOrganizationId (line 34) | public Long getOrganizationId() { method setOrganizationId (line 38) | public void setOrganizationId(Long organizationId) { method getName (line 42) | public String getName() { method setName (line 46) | public void setName(String name) { method getEmployees (line 50) | public List getEmployees() { method setEmployees (line 54) | public void setEmployees(List employees) { method toString (line 58) | @Override FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/model/Employee.java class Employee (line 3) | public class Employee { method Employee (line 13) | public Employee() { method Employee (line 17) | public Employee(String name, int age, String position) { method getId (line 23) | public Long getId() { method setId (line 27) | public void setId(Long id) { method getName (line 31) | public String getName() { method setName (line 35) | public void setName(String name) { method getAge (line 39) | public int getAge() { method setAge (line 43) | public void setAge(int age) { method getPosition (line 47) | public String getPosition() { method setPosition (line 51) | public void setPosition(String position) { method toString (line 55) | @Override FILE: demo-microservices/department-service/src/main/java/org/springdoc/demo/services/department/repository/DepartmentRepository.java class DepartmentRepository (line 10) | public class DepartmentRepository { method add (line 14) | public Department add(Department department) { method findById (line 20) | public Department findById(Long id) { method findAll (line 28) | public List findAll() { method findByOrganization (line 32) | public List findByOrganization(Long organizationId) { FILE: demo-microservices/discovery-service/src/main/java/org/springdoc/demo/services/discovery/DiscoveryApplication.java class DiscoveryApplication (line 7) | @SpringBootApplication method main (line 11) | public static void main(String[] args) { FILE: demo-microservices/employee-service/src/main/java/org/springdoc/demo/services/employee/EmployeeApplication.java class EmployeeApplication (line 13) | @SpringBootApplication method main (line 20) | public static void main(String[] args) { method repository (line 24) | @Bean FILE: demo-microservices/employee-service/src/main/java/org/springdoc/demo/services/employee/controller/EmployeeController.java class EmployeeController (line 16) | @RestController method EmployeeController (line 23) | public EmployeeController(EmployeeRepository repository) { method add (line 27) | @PostMapping("/") method findById (line 33) | @GetMapping("/{id}") method findAll (line 39) | @GetMapping("/") method findByDepartment (line 45) | @GetMapping("/department/{departmentId}") method findByOrganization (line 51) | @GetMapping("/organization/{organizationId}") FILE: demo-microservices/employee-service/src/main/java/org/springdoc/demo/services/employee/model/Employee.java class Employee (line 3) | public class Employee { method Employee (line 17) | public Employee() { method Employee (line 21) | public Employee(Long organizationId, Long departmentId, String name, i... method getId (line 29) | public Long getId() { method setId (line 33) | public void setId(Long id) { method getOrganizationId (line 37) | public Long getOrganizationId() { method setOrganizationId (line 41) | public void setOrganizationId(Long organizationId) { method getDepartmentId (line 45) | public Long getDepartmentId() { method setDepartmentId (line 49) | public void setDepartmentId(Long departmentId) { method getName (line 53) | public String getName() { method setName (line 57) | public void setName(String name) { method getAge (line 61) | public int getAge() { method setAge (line 65) | public void setAge(int age) { method getPosition (line 69) | public String getPosition() { method setPosition (line 73) | public void setPosition(String position) { method toString (line 77) | @Override FILE: demo-microservices/employee-service/src/main/java/org/springdoc/demo/services/employee/repository/EmployeeRepository.java class EmployeeRepository (line 10) | public class EmployeeRepository { method add (line 14) | public Employee add(Employee employee) { method findById (line 20) | public Employee findById(Long id) { method findAll (line 28) | public List findAll() { method findByDepartment (line 32) | public List findByDepartment(Long departmentId) { method findByOrganization (line 36) | public List findByOrganization(Long organizationId) { FILE: demo-microservices/gateway-service/src/main/java/org/springdoc/demo/services/gateway/ContextPathRewritePathGatewayFilterFactory.java class ContextPathRewritePathGatewayFilterFactory (line 14) | @Component method apply (line 17) | @Override FILE: demo-microservices/gateway-service/src/main/java/org/springdoc/demo/services/gateway/GatewayApplication.java class GatewayApplication (line 20) | @SpringBootApplication method main (line 24) | public static void main(String[] args) { method apis (line 28) | @Bean FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/OrganizationApplication.java class OrganizationApplication (line 14) | @SpringBootApplication method main (line 22) | public static void main(String[] args) { method repository (line 26) | @Bean FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/client/DepartmentClient.java type DepartmentClient (line 11) | @FeignClient(name = "department-service") method findByOrganization (line 14) | @GetMapping("/organization/{organizationId}") method findByOrganizationWithEmployees (line 17) | @GetMapping("/organization/{organizationId}/with-employees") FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/client/EmployeeClient.java type EmployeeClient (line 11) | @FeignClient(name = "employee-service") method findByOrganization (line 14) | @GetMapping("/organization/{organizationId}") FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/controller/OrganizationController.java class OrganizationController (line 18) | @RestController method OrganizationController (line 29) | public OrganizationController(OrganizationRepository repository, Depar... method add (line 35) | @PostMapping method findAll (line 41) | @GetMapping method findById (line 47) | @GetMapping("/{id}") method findByIdWithDepartments (line 53) | @GetMapping("/{id}/with-departments") method findByIdWithDepartmentsAndEmployees (line 61) | @GetMapping("/{id}/with-departments-and-employees") method findByIdWithEmployees (line 69) | @GetMapping("/{id}/with-employees") FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/model/Department.java class Department (line 6) | public class Department { method Department (line 14) | public Department() { method Department (line 18) | public Department(String name) { method getId (line 23) | public Long getId() { method setId (line 27) | public void setId(Long id) { method getName (line 31) | public String getName() { method setName (line 35) | public void setName(String name) { method getEmployees (line 39) | public List getEmployees() { method setEmployees (line 43) | public void setEmployees(List employees) { method toString (line 47) | @Override FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/model/Employee.java class Employee (line 3) | public class Employee { method Employee (line 13) | public Employee() { method Employee (line 17) | public Employee(String name, int age, String position) { method getId (line 23) | public Long getId() { method setId (line 27) | public void setId(Long id) { method getName (line 31) | public String getName() { method setName (line 35) | public void setName(String name) { method getAge (line 39) | public int getAge() { method setAge (line 43) | public void setAge(int age) { method getPosition (line 47) | public String getPosition() { method setPosition (line 51) | public void setPosition(String position) { method toString (line 55) | @Override FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/model/Organization.java class Organization (line 6) | public class Organization { method Organization (line 18) | public Organization() { method Organization (line 22) | public Organization(String name, String address) { method getId (line 27) | public Long getId() { method setId (line 31) | public void setId(Long id) { method getName (line 35) | public String getName() { method setName (line 39) | public void setName(String name) { method getAddress (line 43) | public String getAddress() { method setAddress (line 47) | public void setAddress(String address) { method getDepartments (line 51) | public List getDepartments() { method setDepartments (line 55) | public void setDepartments(List departments) { method getEmployees (line 59) | public List getEmployees() { method setEmployees (line 63) | public void setEmployees(List employees) { method toString (line 67) | @Override FILE: demo-microservices/organization-service/src/main/java/org/springdoc/demo/services/organization/repository/OrganizationRepository.java class OrganizationRepository (line 9) | public class OrganizationRepository { method add (line 13) | public Organization add(Organization organization) { method findById (line 19) | public Organization findById(Long id) { method findAll (line 27) | public List findAll() { FILE: demo-oauth2/oauth-authorization-server/src/main/java/org/springdoc/demo/auth/AuthorizationServerApp.java class AuthorizationServerApp (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) { FILE: demo-oauth2/oauth-authorization-server/src/main/java/org/springdoc/demo/auth/DefaultSecurityConfig.java class DefaultSecurityConfig (line 15) | @EnableWebSecurity method defaultSecurityFilterChain (line 19) | @Bean method users (line 31) | @Bean FILE: demo-oauth2/oauth-authorization-server/src/main/java/org/springdoc/demo/auth/Jwks.java class Jwks (line 10) | public final class Jwks { method Jwks (line 12) | private Jwks() { method generateRsa (line 15) | public static RSAKey generateRsa() { FILE: demo-oauth2/oauth-authorization-server/src/main/java/org/springdoc/demo/auth/KeyGeneratorUtils.java class KeyGeneratorUtils (line 11) | final class KeyGeneratorUtils { method KeyGeneratorUtils (line 13) | private KeyGeneratorUtils() { method generateRsaKey (line 16) | static KeyPair generateRsaKey() { method generateEcKey (line 29) | static KeyPair generateEcKey() { FILE: demo-oauth2/oauth-authorization-server/src/main/java/org/springdoc/demo/auth/SecurityConfig.java class SecurityConfig (line 45) | @Configuration(proxyBeanMethods = false) method corsConfigurationSource (line 51) | @Bean method authorizationServerSecurityFilterChain (line 62) | @Bean method registeredClientRepository (line 78) | @Bean method authorizationService (line 106) | @Bean method authorizationConsentService (line 111) | @Bean method jwkSource (line 116) | @Bean method jwtDecoder (line 123) | @Bean method authorizationServerSettings (line 128) | @Bean method embeddedDatabase (line 133) | @Bean FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/ResourceServerApp.java class ResourceServerApp (line 13) | @SpringBootApplication method main (line 16) | public static void main(String[] args) throws Exception { method customOpenAPI (line 20) | @Bean FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/config/OpenApiConfig.java class OpenApiConfig (line 29) | @OpenAPIDefinition(info = @Info(title = "My App", FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/config/SecurityConfig.java class SecurityConfig (line 9) | @Configuration method configure (line 12) | @Bean FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/model/Foo.java class Foo (line 8) | @Entity method Foo (line 17) | protected Foo() { method Foo (line 20) | public Foo(String name) { method getId (line 24) | public Long getId() { method setId (line 28) | public void setId(Long id) { method getName (line 32) | public String getName() { method setName (line 36) | public void setName(String name) { method hashCode (line 40) | @Override method equals (line 50) | @Override method toString (line 74) | @Override FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/repository/IFooRepository.java type IFooRepository (line 8) | public interface IFooRepository extends PagingAndSortingRepository findById(Long id); method save (line 11) | Foo save(Foo foo); method findAll (line 13) | Iterable findAll(); FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/service/impl/FooServiceImpl.java class FooServiceImpl (line 11) | @Service method FooServiceImpl (line 16) | public FooServiceImpl(IFooRepository fooRepository) { method findById (line 20) | @Override method save (line 25) | @Override method findAll (line 30) | @Override FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/web/controller/FooController.java class FooController (line 24) | @RestController method FooController (line 31) | public FooController(IFooService fooService) { method findOne (line 35) | @GetMapping(value = "/{id}") method create (line 42) | @ResponseStatus(HttpStatus.CREATED) method findAll (line 49) | @GetMapping method updateFoo (line 57) | @PutMapping("/{id}") method convertToDto (line 63) | protected FooDTO convertToDto(Foo entity) { method convertToEntity (line 69) | protected Foo convertToEntity(FooDTO dto) { FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/web/controller/UserInfoController.java class UserInfoController (line 13) | @RestController method getUserInfo (line 16) | @GetMapping("/user/info") FILE: demo-oauth2/oauth-resource-server-webflux/src/main/java/org/springdoc/demo/resource/web/dto/FooDTO.java class FooDTO (line 3) | public class FooDTO { method FooDTO (line 8) | public FooDTO() { method FooDTO (line 12) | public FooDTO(final long id, final String name) { method getId (line 21) | public long getId() { method setId (line 25) | public void setId(final long id) { method getName (line 29) | public String getName() { method setName (line 33) | public void setName(final String name) { FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/ResourceServerApp.java class ResourceServerApp (line 6) | @SpringBootApplication method main (line 9) | public static void main(String[] args) throws Exception { FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/config/OpenApiConfig.java class OpenApiConfig (line 29) | @OpenAPIDefinition(info = @Info(title = "Foo API", FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/config/SecurityConfig.java class SecurityConfig (line 10) | @Configuration method filterChain1 (line 13) | @Bean FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/model/Foo.java class Foo (line 10) | @Entity method Foo (line 19) | protected Foo() { method Foo (line 22) | public Foo(String name) { method getId (line 26) | public UUID getId() { method setId (line 30) | public void setId(UUID id) { method getName (line 34) | public String getName() { method setName (line 38) | public void setName(String name) { method hashCode (line 42) | @Override method equals (line 52) | @Override method toString (line 76) | @Override FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/repository/IFooRepository.java type IFooRepository (line 8) | public interface IFooRepository extends PagingAndSortingRepository findById(Long id); method save (line 11) | Foo save(Foo foo); method findAll (line 13) | Iterable findAll(); FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/service/impl/FooServiceImpl.java class FooServiceImpl (line 11) | @Service method FooServiceImpl (line 16) | public FooServiceImpl(IFooRepository fooRepository) { method findById (line 20) | @Override method save (line 25) | @Override method findAll (line 30) | @Override FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/web/controller/FooController.java class FooController (line 24) | @RestController method FooController (line 31) | public FooController(IFooService fooService) { method findOne (line 35) | @GetMapping(value = "/{id}") method create (line 42) | @ResponseStatus(HttpStatus.CREATED) method findAll (line 49) | @GetMapping method updateFoo (line 57) | @PutMapping("/{id}") method convertToDto (line 63) | protected FooDTO convertToDto(Foo entity) { method convertToEntity (line 69) | protected Foo convertToEntity(FooDTO dto) { FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/web/controller/UserInfoController.java class UserInfoController (line 13) | @RestController method getUserInfo (line 16) | @GetMapping("/user/info") FILE: demo-oauth2/oauth-resource-server-webmvc/src/main/java/org/springdoc/demo/resource/web/dto/FooDTO.java class FooDTO (line 5) | public class FooDTO { method FooDTO (line 10) | public FooDTO() { method FooDTO (line 14) | public FooDTO(final UUID id, final String name) { method getId (line 21) | public UUID getId() { method setId (line 25) | public void setId(UUID id) { method getName (line 29) | public String getName() { method setName (line 33) | public void setName(final String name) { FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/SampleApplication.java class SampleApplication (line 14) | @SpringBootApplication() method main (line 17) | public static void main(String[] args) { method customOpenAPI (line 21) | @Bean FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/config/SampleConfig.java class SampleConfig (line 14) | @Configuration method initConfig (line 17) | @PostConstruct method moneyModule (line 23) | @Bean FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/controller/PersonController.java class PersonController (line 18) | @RestController method person (line 23) | @PostMapping("/persons") method findByLastName (line 32) | @GetMapping(path = "/persons") FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/exceptions/ErrorMessage.java class ErrorMessage (line 8) | public class ErrorMessage { method ErrorMessage (line 12) | public ErrorMessage() { method ErrorMessage (line 15) | public ErrorMessage(List errors) { method ErrorMessage (line 19) | public ErrorMessage(String error) { method ErrorMessage (line 23) | public ErrorMessage(String... errors) { method getErrors (line 27) | public List getErrors() { method setErrors (line 31) | public void setErrors(List errors) { FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/exceptions/GlobalControllerAdvice.java class GlobalControllerAdvice (line 28) | @ControllerAdvice(assignableTypes = PersonController.class) method problem (line 36) | @ExceptionHandler(Throwable.class) method handleMethodArgumentNotValid (line 50) | @ExceptionHandler(MethodArgumentNotValidException.class) method handleConstraintViolatedException (line 72) | @ExceptionHandler(ConstraintViolationException.class) method handleMissingServletRequestParameterException (line 91) | @ExceptionHandler(MissingServletRequestParameterException.class) method handleHttpMediaTypeNotSupported (line 104) | @ExceptionHandler(HttpMediaTypeNotSupportedException.class) method handleHttpMessageNotReadable (line 114) | @ExceptionHandler(HttpMessageNotReadableException.class) FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/exceptions/Problem.java class Problem (line 3) | public class Problem { method Problem (line 9) | public Problem(String logRef, String message) { method Problem (line 15) | public Problem() { method getLogRef (line 20) | public String getLogRef() { method setLogRef (line 24) | public void setLogRef(String logRef) { method getMessage (line 28) | public String getMessage() { method setMessage (line 32) | public void setMessage(String message) { FILE: demo-person-service/src/main/java/org/springdoc/demo/services/person/model/Person.java class Person (line 13) | public class Person { method getWorth (line 38) | public MonetaryAmount getWorth() { method setWorth (line 42) | public void setWorth(MonetaryAmount worth) { method getId (line 46) | public long getId() { method setId (line 50) | public void setId(long id) { method getEmail1 (line 54) | public String getEmail1() { method setEmail1 (line 58) | public void setEmail1(String email1) { method getEmail2 (line 62) | public String getEmail2() { method setEmail2 (line 66) | public void setEmail2(String email2) { method getFirstName (line 70) | public String getFirstName() { method setFirstName (line 74) | public void setFirstName(String firstName) { method getLastName (line 78) | public String getLastName() { method setLastName (line 82) | public void setLastName(String lastName) { method getAge (line 86) | public int getAge() { method setAge (line 90) | public void setAge(int age) { FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/AppNativeConfiguration.java class AppNativeConfiguration (line 18) | @Configuration class AppNativeRuntimeHints (line 30) | static class AppNativeRuntimeHints implements RuntimeHintsRegistrar { method registerHints (line 32) | @Override FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/WebfluxFunctionalDemoApplication.java class WebfluxFunctionalDemoApplication (line 29) | @SpringBootApplication method main (line 32) | public static void main(String[] args) { method employeesOpenApi (line 36) | @Bean method userOpenApi (line 45) | @Bean method coffeeOpenApi (line 54) | @Bean FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/coffee/Coffee.java class Coffee (line 7) | public class Coffee { method Coffee (line 13) | public Coffee() { method Coffee (line 16) | public Coffee(String name) { method Coffee (line 20) | public Coffee(String id, String name) { method getId (line 25) | public String getId() { method setId (line 29) | public void setId(String id) { method getName (line 33) | public String getName() { method setName (line 37) | public void setName(String name) { method equals (line 41) | @Override method hashCode (line 50) | @Override method toString (line 55) | @Override FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/coffee/CoffeeOrder.java class CoffeeOrder (line 6) | public class CoffeeOrder { method CoffeeOrder (line 11) | public CoffeeOrder() { method CoffeeOrder (line 14) | public CoffeeOrder(String coffeeId, Instant whenOrdered) { method getCoffeeId (line 19) | public String getCoffeeId() { method getWhenOrdered (line 23) | public Instant getWhenOrdered() { method equals (line 27) | @Override method hashCode (line 36) | @Override method toString (line 41) | @Override FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/coffee/CoffeeRepository.java type CoffeeRepository (line 5) | public interface CoffeeRepository extends ReactiveCrudRepository getAllCoffees() { method getCoffeeById (line 25) | Mono getCoffeeById(@Parameter(in = ParameterIn.PATH) String id) { method getOrdersForCoffeeById (line 29) | Flux getOrdersForCoffeeById(@Parameter(in = ParameterIn.P... FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/coffee/RouteConfig.java class RouteConfig (line 14) | @Configuration method RouteConfig (line 18) | public RouteConfig(CoffeeService service) { method routerFunction (line 22) | @Bean method all (line 29) | private Mono all(ServerRequest req) { method byId (line 34) | private Mono byId(ServerRequest req) { method orders (line 39) | private Mono orders(ServerRequest req) { FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/employee/Employee.java class Employee (line 7) | @Data FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/employee/EmployeeFunctionalConfig.java class EmployeeFunctionalConfig (line 23) | @Configuration method employeeRepository (line 27) | @Bean method getAllEmployeesRoute (line 32) | @Bean method getEmployeeByIdRoute (line 40) | @Bean method updateEmployeeRoute (line 46) | @Bean method composedRoutes (line 52) | RouterFunction composedRoutes() { method findAllEmployeesFunction (line 58) | private HandlerFunction findAllEmployeesFunction() { method updateEmployeeFunction (line 63) | private HandlerFunction updateEmployeeFunction() { method findEmployeeByIdFunction (line 69) | private HandlerFunction findEmployeeByIdFunction() { method getOpenAPI (line 74) | private Consumer getOpenAPI(String findAllEmployees) { method findEmployeeByIdOpenAPI (line 78) | private Consumer findEmployeeByIdOpenAPI() { FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/employee/EmployeeRepository.java class EmployeeRepository (line 12) | @Tag(name = "Employees") method findEmployeeById (line 45) | public Mono findEmployeeById(@Parameter(in = ParameterIn.PAT... method findAllEmployees (line 49) | public Flux findAllEmployees() { method updateEmployee (line 53) | public Mono updateEmployee(Employee employee) { FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/user/RoutingConfiguration.java class RoutingConfiguration (line 13) | @Configuration method monoRouterFunction (line 16) | @Bean FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/user/User.java class User (line 3) | public class User { method User (line 12) | public User() { method User (line 15) | public User(long id, String firstname, String lastname, int age) { method getId (line 22) | public long getId() { method setId (line 26) | public void setId(Long id) { method getFirstname (line 30) | public String getFirstname() { method setFirstname (line 34) | public void setFirstname(String firstname) { method getLastname (line 38) | public String getLastname() { method setLastname (line 42) | public void setLastname(String lastname) { method getAge (line 46) | public int getAge() { method setAge (line 50) | public void setAge(int age) { method toString (line 54) | @Override FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/user/UserHandler.java class UserHandler (line 13) | @Component method UserHandler (line 18) | public UserHandler(UserRepository repository) { method getAll (line 25) | public Mono getAll(ServerRequest request) { method getUser (line 36) | public Mono getUser(ServerRequest request) { method postUser (line 55) | public Mono postUser(ServerRequest request) { method putUser (line 63) | public Mono putUser(ServerRequest request) { method deleteUser (line 81) | public Mono deleteUser(ServerRequest request) { FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/user/UserRepository.java type UserRepository (line 10) | @Tag(name = "Users") method getUserById (line 13) | public Mono getUserById(@Parameter(in = ParameterIn.PATH, descri... method getAllUsers (line 15) | @Operation(description = "get all the users") method getAllUsers (line 18) | @Operation(description = "get all the users by firstname") method saveUser (line 21) | public Mono saveUser(Mono user); method putUser (line 23) | public Mono putUser(@Parameter(in = ParameterIn.PATH) Long id, M... method deleteUser (line 25) | public Mono deleteUser(@Parameter(in = ParameterIn.PATH) Long ... FILE: demo-spring-boot-3-webflux-functional/src/main/java/org/springdoc/demo/app4/user/UserRepositoryImpl.java class UserRepositoryImpl (line 13) | @Repository method init (line 17) | @PostConstruct method getUserById (line 23) | @Override method getAllUsers (line 28) | @Override method getAllUsers (line 33) | @Override method saveUser (line 38) | @Override method putUser (line 51) | @Override method deleteUser (line 67) | @Override FILE: demo-spring-boot-3-webflux-functional/src/main/resources/schema.sql type COFFEE (line 1) | CREATE TABLE COFFEE FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/WebfluxDemoApplication.java class WebfluxDemoApplication (line 34) | @SpringBootApplication method main (line 38) | public static void main(String[] args) { method customOpenAPI (line 42) | @Bean method storeOpenApi (line 52) | @Bean method userOpenApi (line 59) | @Bean FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/controller/ExceptionTranslator.java class ExceptionTranslator (line 31) | @RestControllerAdvice method handleDuplicateKeyException (line 35) | @SuppressWarnings("rawtypes") method handleTweetNotFoundException (line 43) | @SuppressWarnings("rawtypes") FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/controller/TweetController.java class TweetController (line 45) | @RestController method TweetController (line 52) | public TweetController(TweetRepository tweetRepository, TweetMapper tw... method getAllTweets (line 57) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method createTweets (line 64) | @PostMapping("/tweets") method getTweetById (line 70) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method updateTweet (line 78) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method deleteTweet (line 90) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method streamAllTweets (line 100) | @Operation(description = "Tweets are Sent to the client as Server Sent... FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/controller/TweetMapper.java class TweetMapper (line 29) | @Component method toDTO (line 32) | Flux toDTO(Flux tweet) { method toEntity (line 36) | Flux toEntity(Flux tweetDTO) { method toDTO (line 40) | Mono toDTO(Mono tweet) { method toEntity (line 44) | Mono toEntity(Mono tweetDTO) { method toDTO (line 48) | TweetDTO toDTO(Tweet tweet) { method toEntity (line 54) | Tweet toEntity(TweetDTO tweetDTO) { FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/dto/TweetDTO.java class TweetDTO (line 31) | public class TweetDTO { method TweetDTO (line 41) | public TweetDTO() { method TweetDTO (line 45) | public TweetDTO(String text) { method getId (line 49) | public String getId() { method setId (line 53) | public void setId(String id) { method getText (line 57) | public String getText() { method setText (line 61) | public void setText(String text) { method getCreatedAt (line 65) | public Date getCreatedAt() { method setCreatedAt (line 69) | public void setCreatedAt(Date createdAt) { FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/exception/TweetNotFoundException.java class TweetNotFoundException (line 24) | public class TweetNotFoundException extends RuntimeException { method TweetNotFoundException (line 31) | public TweetNotFoundException(String tweetId) { FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/model/Tweet.java class Tweet (line 34) | @Document(collection = "tweets") method Tweet (line 46) | public Tweet() { method Tweet (line 50) | public Tweet(String text) { method getId (line 54) | public String getId() { method setId (line 58) | public void setId(String id) { method getText (line 62) | public String getText() { method setText (line 66) | public void setText(String text) { method getCreatedAt (line 70) | public Date getCreatedAt() { method setCreatedAt (line 74) | public void setCreatedAt(Date createdAt) { FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/payload/ErrorResponse.java class ErrorResponse (line 24) | public class ErrorResponse { method ErrorResponse (line 27) | public ErrorResponse(String message) { method getMessage (line 31) | public String getMessage() { method setMessage (line 35) | public void setMessage(String message) { FILE: demo-spring-boot-3-webflux/src/main/java/org/springdoc/demo/app3/repository/TweetRepository.java type TweetRepository (line 29) | @Repository FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/Application.java class Application (line 37) | @SpringBootApplication method main (line 40) | public static void main(String[] args) { method actuatorApi (line 44) | @Bean method usersGroup (line 60) | @Bean FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/ApiUtil.java class ApiUtil (line 29) | public class ApiUtil { method setExampleResponse (line 31) | public static void setExampleResponse(NativeWebRequest req, String con... method checkApiKey (line 41) | public static void checkApiKey(NativeWebRequest req) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/ExceptionTranslator.java class ExceptionTranslator (line 34) | @RestControllerAdvice method ExceptionTranslator (line 39) | public ExceptionTranslator(ErrorAttributes errorAttributes) { method processConstraintViolationException (line 43) | @ExceptionHandler(ConstraintViolationException.class) FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/PetApi.java type PetApi (line 64) | @SecurityScheme(name = "petstore_auth", type = SecuritySchemeType.OAUTH2... method getDelegate (line 70) | default PetApiDelegate getDelegate() { method addPet (line 75) | @Operation(summary = "Add a new pet to the store", description = "Add ... method deletePet (line 87) | @Operation(summary = "Deletes a pet", description = "", security = { method findPetsByStatus (line 97) | @Operation(summary = "Finds Pets by status", description = "Multiple s... method findPetsByTags (line 107) | @Operation(summary = "Finds Pets by tags", description = "Multiple tag... method getPetById (line 118) | @Operation(summary = "Find pet by ID", description = "Returns a single... method updatePet (line 132) | @Operation(summary = "Update an existing pet", description = "Update a... method updatePetWithForm (line 148) | @Operation(summary = "Updates a pet in the store with form data", desc... method uploadFile (line 159) | @Operation(summary = "uploads an image", security = { method getAllPets (line 172) | @Operation(summary = "Get all Pets paged", description = "Get all Pets... FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/PetApiController.java class PetApiController (line 26) | @RestController method PetApiController (line 32) | public PetApiController(@org.springframework.beans.factory.annotation.... method getDelegate (line 37) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/PetApiDelegate.java type PetApiDelegate (line 41) | public interface PetApiDelegate { method getRequest (line 43) | default Optional getRequest() { method addPet (line 50) | default void addPet(Pet pet) { method deletePet (line 57) | default ResponseEntity deletePet(Long petId, method findPetsByStatus (line 66) | default ResponseEntity> findPetsByStatus(List status) { method extract (line 72) | default void extract() { method findPetsByTags (line 90) | default ResponseEntity> findPetsByTags(List tags) { method getPetById (line 99) | default ResponseEntity getPetById(Long petId) { method updatePet (line 108) | default ResponseEntity updatePet(Pet pet) { method updatePetWithForm (line 116) | default ResponseEntity updatePetWithForm(Long petId, method uploadFile (line 126) | default ResponseEntity uploadFile(Long petId, method getAllPets (line 141) | default ResponseEntity> getAllPets(@NotNull Pageable pageabl... FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/PetApiDelegateImpl.java class PetApiDelegateImpl (line 47) | @Service method PetApiDelegateImpl (line 54) | public PetApiDelegateImpl(PetRepository petRepository, NativeWebReques... method createPet (line 59) | private static Pet createPet(long id, Category category, String name, ... method initPets (line 74) | @PostConstruct method addPet (line 106) | @Override method deletePet (line 112) | @Override method findPetsByStatus (line 118) | @Override method findPetsByTags (line 127) | @Override method getPetById (line 132) | @Override method updatePet (line 139) | @Override method updatePetWithForm (line 145) | @Override method uploadFile (line 156) | @Override method getAllPets (line 172) | public ResponseEntity> getAllPets(@NotNull Pageable pageable) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/StoreApi.java type StoreApi (line 48) | @Tag(name = "store", description = "the store API") method getDelegate (line 51) | default StoreApiDelegate getDelegate() { method deleteOrder (line 56) | @Operation(summary = "Delete purchase order by ID", description = "For... method getInventory (line 65) | @Operation(summary = "Returns pet inventories by status", description ... method getOrderById (line 74) | @Operation(summary = "Find purchase order by ID", description = "For v... method placeOrder (line 86) | @Operation(summary = "Place an order for a pet", description = "Place ... FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/StoreApiController.java class StoreApiController (line 26) | @RestController method StoreApiController (line 32) | public StoreApiController(@org.springframework.beans.factory.annotatio... method getDelegate (line 37) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/StoreApiDelegate.java type StoreApiDelegate (line 35) | public interface StoreApiDelegate { method getRequest (line 37) | default Optional getRequest() { method deleteOrder (line 44) | default ResponseEntity deleteOrder(Long orderId) { method getInventory (line 52) | default ResponseEntity> getInventory() { method getOrderById (line 60) | default ResponseEntity getOrderById(Long orderId) { method extract (line 66) | default void extract() { method placeOrder (line 84) | default ResponseEntity placeOrder(Order order) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/StoreApiDelegateImpl.java class StoreApiDelegateImpl (line 35) | @Service method StoreApiDelegateImpl (line 45) | public StoreApiDelegateImpl(OrderRepository orderRepository, PetReposi... method createOrder (line 51) | private static Order createOrder(long id, long petId, Order.StatusEnum... method initOrders (line 60) | @PostConstruct method deleteOrder (line 74) | @Override method getInventory (line 82) | @Override method getOrderById (line 88) | @Override method placeOrder (line 95) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/UserApi.java type UserApi (line 52) | @Tag(name = "user", description = "the user API") method getDelegate (line 55) | default UserApiDelegate getDelegate() { method createUser (line 60) | @Operation(summary = "Create user", description = "This can only be do... method createUsersWithArrayInput (line 68) | @Operation(summary = "Creates list of users with given input array", t... method createUsersWithListInput (line 77) | @Operation(summary = "Creates list of users with given input array", d... method deleteUser (line 89) | @Operation(summary = "Delete user", description = "This can only be do... method getUserByName (line 101) | @Operation(summary = "Get user by user name", tags = { "user" }) method loginUser (line 113) | @Operation(summary = "Logs user into the system", tags = { "user" }) method logoutUser (line 127) | @Operation(summary = "Logs out current logged in user session", tags =... method updateUser (line 134) | @Operation(summary = "Update user", description = "This can only be do... FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/UserApiController.java class UserApiController (line 26) | @RestController method UserApiController (line 32) | public UserApiController(@org.springframework.beans.factory.annotation... method getDelegate (line 37) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/UserApiDelegate.java type UserApiDelegate (line 36) | public interface UserApiDelegate { method getRequest (line 38) | default Optional getRequest() { method createUser (line 45) | default ResponseEntity createUser(User user) { method createUsersWithArrayInput (line 53) | default ResponseEntity createUsersWithArrayInput(List user) { method createUsersWithListInput (line 61) | default ResponseEntity createUsersWithListInput(List user) { method deleteUser (line 69) | default ResponseEntity deleteUser(String username) { method getUserByName (line 77) | default ResponseEntity getUserByName(String username) { method loginUser (line 97) | default ResponseEntity loginUser(String username, method logoutUser (line 106) | default ResponseEntity logoutUser() { method updateUser (line 114) | default ResponseEntity updateUser(String username, FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/api/UserApiDelegateImpl.java class UserApiDelegateImpl (line 35) | @Service method UserApiDelegateImpl (line 40) | public UserApiDelegateImpl(UserRepository userRepository) { method createUser (line 44) | private static User createUser(long id, String username, String firstN... method initUsers (line 56) | @PostConstruct method createUser (line 82) | @Override method createUsersWithArrayInput (line 88) | @Override method createUsersWithListInput (line 94) | @Override method deleteUser (line 99) | @Override method getUserByName (line 107) | @Override method loginUser (line 114) | @Override method logoutUser (line 123) | @Override method updateUser (line 128) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Body.java class Body (line 24) | public class Body { method toIndentedString (line 42) | private static String toIndentedString(java.lang.Object o) { method getName (line 54) | @JsonProperty("name") method setName (line 59) | public void setName(String name) { method name (line 63) | public Body name(String name) { method getStatus (line 73) | @JsonProperty("status") method setStatus (line 78) | public void setStatus(String status) { method status (line 82) | public Body status(String status) { method toString (line 87) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Body1.java class Body1 (line 26) | public class Body1 { method toIndentedString (line 44) | private static String toIndentedString(java.lang.Object o) { method getAdditionalMetadata (line 56) | @JsonProperty("additionalMetadata") method setAdditionalMetadata (line 61) | public void setAdditionalMetadata(String additionalMetadata) { method additionalMetadata (line 65) | public Body1 additionalMetadata(String additionalMetadata) { method getFile (line 75) | @JsonProperty("file") method setFile (line 80) | public void setFile(File file) { method file (line 84) | public Body1 file(File file) { method toString (line 89) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Category.java class Category (line 35) | @JacksonXmlRootElement(localName = "category") method id (line 53) | public Category id(Long id) { method getId (line 64) | @Schema(example = "1", description = "") method setId (line 71) | public void setId(Long id) { method name (line 76) | public Category name(String name) { method getName (line 87) | @Schema(example = "Dogs", description = "") method setName (line 94) | public void setName(String name) { method equals (line 99) | @Override method hashCode (line 112) | @Override method toString (line 117) | @Override method toIndentedString (line 132) | private String toIndentedString(Object o) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/ModelApiResponse.java class ModelApiResponse (line 35) | @JacksonXmlRootElement(localName = "##default") method code (line 59) | public ModelApiResponse code(Integer code) { method getCode (line 70) | @Schema(description = "") method setCode (line 77) | public void setCode(Integer code) { method type (line 82) | public ModelApiResponse type(String type) { method getType (line 93) | @Schema(description = "") method setType (line 100) | public void setType(String type) { method message (line 105) | public ModelApiResponse message(String message) { method getMessage (line 116) | @Schema(description = "") method setMessage (line 123) | public void setMessage(String message) { method equals (line 128) | @Override method hashCode (line 142) | @Override method toString (line 147) | @Override method toIndentedString (line 163) | private String toIndentedString(Object o) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Order.java class Order (line 39) | @JacksonXmlRootElement(localName = "order") method id (line 78) | public Order id(Long id) { method getId (line 88) | @Schema(example = "10", description = "") method setId (line 95) | public void setId(Long id) { method petId (line 99) | public Order petId(Long petId) { method getPetId (line 109) | @Schema(example = "198772", description = "") method setPetId (line 116) | public void setPetId(Long petId) { method quantity (line 120) | public Order quantity(Integer quantity) { method getQuantity (line 130) | @Schema(example = "7", description = "") method setQuantity (line 137) | public void setQuantity(Integer quantity) { method shipDate (line 141) | public Order shipDate(Date shipDate) { method getShipDate (line 151) | @Schema(description = "") method setShipDate (line 159) | public void setShipDate(Date shipDate) { method status (line 163) | public Order status(StatusEnum status) { method getStatus (line 173) | @Schema(example = "approved", description = "Order Status") method setStatus (line 180) | public void setStatus(StatusEnum status) { method complete (line 184) | public Order complete(Boolean complete) { method getComplete (line 194) | @Schema(description = "") method setComplete (line 201) | public void setComplete(Boolean complete) { method equals (line 205) | @Override method hashCode (line 222) | @Override method toString (line 227) | @Override method toIndentedString (line 246) | private String toIndentedString(Object o) { type StatusEnum (line 256) | public enum StatusEnum { method StatusEnum (line 265) | StatusEnum(String value) { method fromValue (line 269) | @JsonCreator method toString (line 279) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Pet.java class Pet (line 42) | @JacksonXmlRootElement(localName = "pet") method id (line 84) | public Pet id(Long id) { method getId (line 94) | @Schema(example = "10", description = "") method setId (line 101) | public void setId(Long id) { method name (line 105) | public Pet name(String name) { method getName (line 115) | @Schema(example = "doggie", required = true, description = "") method setName (line 123) | public void setName(String name) { method category (line 127) | public Pet category(Category category) { method getCategory (line 137) | @Schema(description = "") method setCategory (line 145) | public void setCategory(Category category) { method photoUrls (line 149) | public Pet photoUrls(List photoUrls) { method addPhotoUrlsItem (line 154) | public Pet addPhotoUrlsItem(String photoUrlsItem) { method getPhotoUrls (line 164) | @Schema(required = true, description = "") method setPhotoUrls (line 172) | public void setPhotoUrls(List photoUrls) { method tags (line 176) | public Pet tags(List tags) { method addTagsItem (line 181) | public Pet addTagsItem(Tag tagsItem) { method getTags (line 194) | @Schema(description = "") method setTags (line 202) | public void setTags(List tags) { method status (line 206) | public Pet status(StatusEnum status) { method getStatus (line 216) | @Schema(description = "pet status in the store") method setStatus (line 223) | public void setStatus(StatusEnum status) { method equals (line 227) | @Override method hashCode (line 244) | @Override method toString (line 249) | @Override method toIndentedString (line 268) | private String toIndentedString(Object o) { type StatusEnum (line 278) | public enum StatusEnum { method StatusEnum (line 287) | StatusEnum(String value) { method fromValue (line 291) | @JsonCreator method toString (line 301) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/Tag.java class Tag (line 35) | @JacksonXmlRootElement(localName = "tag") method id (line 53) | public Tag id(Long id) { method getId (line 64) | @Schema(description = "") method setId (line 71) | public void setId(Long id) { method name (line 76) | public Tag name(String name) { method getName (line 87) | @Schema(description = "") method setName (line 94) | public void setName(String name) { method equals (line 99) | @Override method hashCode (line 112) | @Override method toString (line 117) | @Override method toIndentedString (line 132) | private String toIndentedString(Object o) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/model/User.java class User (line 35) | @JacksonXmlRootElement(localName = "user") method id (line 89) | public User id(Long id) { method getId (line 100) | @Schema(example = "10", description = "") method setId (line 107) | public void setId(Long id) { method username (line 112) | public User username(String username) { method getUsername (line 123) | @Schema(example = "theUser", description = "") method setUsername (line 130) | public void setUsername(String username) { method firstName (line 135) | public User firstName(String firstName) { method getFirstName (line 146) | @Schema(example = "John", description = "") method setFirstName (line 153) | public void setFirstName(String firstName) { method lastName (line 158) | public User lastName(String lastName) { method getLastName (line 169) | @Schema(example = "James", description = "") method setLastName (line 176) | public void setLastName(String lastName) { method email (line 181) | public User email(String email) { method getEmail (line 192) | @Schema(example = "john@email.com", description = "") method setEmail (line 199) | public void setEmail(String email) { method password (line 204) | public User password(String password) { method getPassword (line 215) | @Schema(example = "12345", description = "") method setPassword (line 222) | public void setPassword(String password) { method phone (line 227) | public User phone(String phone) { method getPhone (line 238) | @Schema(example = "12345", description = "") method setPhone (line 245) | public void setPhone(String phone) { method userStatus (line 250) | public User userStatus(Integer userStatus) { method getUserStatus (line 261) | @Schema(example = "1", description = "User Status") method setUserStatus (line 268) | public void setUserStatus(Integer userStatus) { method equals (line 273) | @Override method hashCode (line 292) | @Override method toString (line 297) | @Override method toIndentedString (line 318) | private String toIndentedString(Object o) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/repository/HashMapRepository.java class HashMapRepository (line 40) | @NoRepositoryBean method HashMapRepository (line 47) | protected HashMapRepository(Class clazz) { method getEntityId (line 51) | abstract ID getEntityId(S entity); method save (line 53) | @Override method saveAll (line 61) | @Override method findAll (line 69) | @Override method findAll (line 74) | public List findAll(Pageable pageable) { method getPageSlice (line 100) | private List getPageSlice(Pageable pageable, Collection col) { method count (line 122) | @Override method delete (line 127) | @Override method deleteAll (line 133) | @Override method deleteAll (line 139) | @Override method deleteById (line 144) | @Override method findAllById (line 150) | @Override method existsById (line 158) | @Override method findOne (line 164) | public T findOne(ID id) { method findById (line 169) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/repository/OrderRepository.java class OrderRepository (line 25) | @Repository method OrderRepository (line 28) | public OrderRepository() { method getEntityId (line 32) | @Override method deleteAllById (line 38) | @Override FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/repository/PetRepository.java class PetRepository (line 29) | @Repository method PetRepository (line 34) | public PetRepository() { method getEntityId (line 38) | @Override method save (line 43) | @Override method deleteAllById (line 55) | @Override method findPetsByStatus (line 60) | public List findPetsByStatus(List statusList) { method findPetsByTags (line 67) | public List findPetsByTags(List tags) { FILE: demo-spring-boot-3-webmvc/src/main/java/org/springdoc/demo/app2/repository/UserRepository.java class UserRepository (line 25) | @Repository method UserRepository (line 28) | public UserRepository() { method getEntityId (line 32) | @Override method deleteAllById (line 37) | @Override FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/WebfluxDemoApplication.java class WebfluxDemoApplication (line 34) | @SpringBootApplication method main (line 38) | public static void main(String[] args) { method customOpenAPI (line 42) | @Bean method storeOpenApi (line 52) | @Bean method userOpenApi (line 59) | @Bean FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/controller/ExceptionTranslator.java class ExceptionTranslator (line 31) | @RestControllerAdvice method handleDuplicateKeyException (line 35) | @SuppressWarnings("rawtypes") method handleTweetNotFoundException (line 43) | @SuppressWarnings("rawtypes") FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/controller/TweetController.java class TweetController (line 45) | @RestController method TweetController (line 52) | public TweetController(TweetRepository tweetRepository, TweetMapper tw... method getAllTweets (line 57) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method createTweets (line 64) | @PostMapping("/tweets") method getTweetById (line 70) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method updateTweet (line 78) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method deleteTweet (line 90) | @ApiResponses(value = { @ApiResponse(responseCode = "200", description... method streamAllTweets (line 100) | @Operation(description = "Tweets are Sent to the client as Server Sent... FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/controller/TweetMapper.java class TweetMapper (line 29) | @Component method toDTO (line 32) | Flux toDTO(Flux tweet) { method toEntity (line 36) | Flux toEntity(Flux tweetDTO) { method toDTO (line 40) | Mono toDTO(Mono tweet) { method toEntity (line 44) | Mono toEntity(Mono tweetDTO) { method toDTO (line 48) | TweetDTO toDTO(Tweet tweet) { method toEntity (line 54) | Tweet toEntity(TweetDTO tweetDTO) { FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/dto/TweetDTO.java class TweetDTO (line 31) | public class TweetDTO { method TweetDTO (line 41) | public TweetDTO() { method TweetDTO (line 45) | public TweetDTO(String text) { method getId (line 49) | public String getId() { method setId (line 53) | public void setId(String id) { method getText (line 57) | public String getText() { method setText (line 61) | public void setText(String text) { method getCreatedAt (line 65) | public Date getCreatedAt() { method setCreatedAt (line 69) | public void setCreatedAt(Date createdAt) { FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/exception/TweetNotFoundException.java class TweetNotFoundException (line 24) | public class TweetNotFoundException extends RuntimeException { method TweetNotFoundException (line 31) | public TweetNotFoundException(String tweetId) { FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/model/Tweet.java class Tweet (line 34) | @Document(collection = "tweets") method Tweet (line 46) | public Tweet() { method Tweet (line 50) | public Tweet(String text) { method getId (line 54) | public String getId() { method setId (line 58) | public void setId(String id) { method getText (line 62) | public String getText() { method setText (line 66) | public void setText(String text) { method getCreatedAt (line 70) | public Date getCreatedAt() { method setCreatedAt (line 74) | public void setCreatedAt(Date createdAt) { FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/payload/ErrorResponse.java class ErrorResponse (line 24) | public class ErrorResponse { method ErrorResponse (line 27) | public ErrorResponse(String message) { method getMessage (line 31) | public String getMessage() { method setMessage (line 35) | public void setMessage(String message) { FILE: demo-spring-boot-webflux-scalar/src/main/java/org/springdoc/demo/app3/repository/TweetRepository.java type TweetRepository (line 29) | @Repository FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/SpringdocApplication.java class SpringdocApplication (line 24) | @SpringBootApplication method main (line 27) | public static void main(String[] args) { FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/controller/BookController.java class BookController (line 45) | @RestController method BookController (line 59) | public BookController(BookRepository repository) { method findById (line 69) | @GetMapping("/{id}") method findBooks (line 80) | @GetMapping("/") method updateBook (line 92) | @PutMapping("/{id}") method patchBook (line 105) | @PatchMapping("/{id}") method postBook (line 117) | @PostMapping("/") method headBook (line 128) | @RequestMapping(method = RequestMethod.HEAD, value = "/") method deleteBook (line 140) | @DeleteMapping("/{id}") FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/exception/BookNotFoundException.java class BookNotFoundException (line 21) | @SuppressWarnings("serial") method BookNotFoundException (line 24) | public BookNotFoundException() { FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/exception/GlobalControllerExceptionHandler.java class GlobalControllerExceptionHandler (line 31) | @RestControllerAdvice method handleConnversion (line 34) | @ExceptionHandler(ConversionFailedException.class) method handleBookNotFound (line 44) | @ExceptionHandler(BookNotFoundException.class) FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/model/Book.java class Book (line 27) | public class Book { method getId (line 53) | public long getId() { method setId (line 62) | public void setId(long id) { method getTitle (line 71) | public String getTitle() { method setTitle (line 80) | public void setTitle(String title) { method getAuthor (line 89) | public String getAuthor() { method setAuthor (line 98) | public void setAuthor(String author) { FILE: demo-spring-boot-webmvc-scalar/src/main/java/org/springdoc/demo/services/book/repository/BookRepository.java class BookRepository (line 30) | @Repository method findById (line 35) | public Optional findById(long id) { method add (line 39) | public void add(Book book) { method getBooks (line 43) | public Collection getBooks() { FILE: demo-spring-cloud-function/spring-cloud-function-webflux/src/main/java/org/springdoc/demo/services/functions/PersonDTO.java class PersonDTO (line 21) | public class PersonDTO { method PersonDTO (line 28) | public PersonDTO() { method PersonDTO (line 31) | public PersonDTO(final String email, final String firstName, final Str... method getEmail (line 37) | public String getEmail() { method setEmail (line 41) | public void setEmail(final String email) { method getFirstName (line 45) | public String getFirstName() { method setFirstName (line 49) | public void setFirstName(final String firstName) { method getLastName (line 53) | public String getLastName() { method setLastName (line 57) | public void setLastName(final String lastName) { FILE: demo-spring-cloud-function/spring-cloud-function-webflux/src/main/java/org/springdoc/demo/services/functions/SampleApplication.java class SampleApplication (line 17) | @SpringBootApplication() method main (line 20) | public static void main(String[] args) { method customOpenAPI (line 24) | @Bean method reverseString (line 32) | @Bean method uppercase (line 37) | @Bean method lowercase (line 42) | @Bean method hello (line 47) | @Bean method words (line 52) | @Bean FILE: demo-spring-cloud-function/spring-cloud-function-webmvc/src/main/java/org/springdoc/demo/services/functions/PersonDTO.java class PersonDTO (line 21) | public class PersonDTO { method PersonDTO (line 28) | public PersonDTO() { method PersonDTO (line 31) | public PersonDTO(final String email, final String firstName, final Str... method getEmail (line 37) | public String getEmail() { method setEmail (line 41) | public void setEmail(final String email) { method getFirstName (line 45) | public String getFirstName() { method setFirstName (line 49) | public void setFirstName(final String firstName) { method getLastName (line 53) | public String getLastName() { method setLastName (line 57) | public void setLastName(final String lastName) { FILE: demo-spring-cloud-function/spring-cloud-function-webmvc/src/main/java/org/springdoc/demo/services/functions/SampleApplication.java class SampleApplication (line 28) | @SpringBootApplication() method main (line 31) | public static void main(String[] args) { method customOpenAPI (line 35) | @Bean method reverseString (line 43) | @Bean method uppercase (line 48) | @Bean method lowercase (line 53) | @Bean method helloSupplier (line 64) | @Bean method helloConsumer (line 71) | @Bean method words (line 76) | @Bean FILE: demo-spring-data-rest/src/main/java/org/springdoc/demo/data/rest/Account.java class Account (line 36) | @Entity method getId (line 49) | public Long getId() { method getCustomer (line 53) | public Customer getCustomer() { method getExpiryDate (line 57) | public Date getExpiryDate() { FILE: demo-spring-data-rest/src/main/java/org/springdoc/demo/data/rest/AccountRepository.java type AccountRepository (line 39) | @RepositoryRestResource method findByCustomer (line 49) | List findByCustomer(@Param("customer") Customer customer); FILE: demo-spring-data-rest/src/main/java/org/springdoc/demo/data/rest/Customer.java class Customer (line 12) | @Entity method getId (line 23) | public Long getId() { method getFirstname (line 27) | public String getFirstname() { method getLastname (line 31) | public String getLastname() { FILE: demo-spring-data-rest/src/main/java/org/springdoc/demo/data/rest/CustomerRepository.java type CustomerRepository (line 41) | @RepositoryRestResource method findByLastname (line 52) | Page findByLastname(@Param("lastname") String lastname, Page... method deleteById (line 54) | @Override method delete (line 58) | @Override FILE: demo-spring-data-rest/src/main/java/org/springdoc/demo/data/rest/SpringdocApplication.java class SpringdocApplication (line 31) | @SpringBootApplication method main (line 34) | public static void main(String[] args) { method customOpenAPI (line 38) | @Bean FILE: demo-spring-hateoas/src/main/java/org/springdoc/demo/services/hateoas/DatabaseLoader.java class DatabaseLoader (line 29) | @Component method init (line 38) | @Bean FILE: demo-spring-hateoas/src/main/java/org/springdoc/demo/services/hateoas/Employee.java class Employee (line 40) | @Data method Employee (line 63) | Employee(String firstName, String lastName, String role) { FILE: demo-spring-hateoas/src/main/java/org/springdoc/demo/services/hateoas/EmployeeController.java class EmployeeController (line 49) | @RestController method EmployeeController (line 54) | EmployeeController(EmployeeRepository repository) { method findAll (line 62) | @GetMapping(path = "/employees", produces = MediaType.APPLICATION_JSON... method newEmployee (line 76) | @PostMapping(path = "/employees", produces = MediaType.APPLICATION_JSO... method findOne (line 101) | @GetMapping(path = "/employees/{id}", produces = MediaType.APPLICATION... method updateEmployee (line 119) | @PutMapping(path = "/employees/{id}", produces = MediaType.APPLICATION... FILE: demo-spring-hateoas/src/main/java/org/springdoc/demo/services/hateoas/EmployeeRepository.java type EmployeeRepository (line 27) | interface EmployeeRepository extends CrudRepository { FILE: demo-spring-hateoas/src/main/java/org/springdoc/demo/services/hateoas/SpringdocApplication.java class SpringdocApplication (line 31) | @SpringBootApplication method main (line 34) | public static void main(String[] args) { method customOpenAPI (line 38) | @Bean