Uses of Class
info.ejava.examples.svc.content.quotes.dto.QuoteDTO
Packages that use QuoteDTO
Package
Description
-
Uses of QuoteDTO in info.ejava.examples.svc.content.quotes.api
Methods in info.ejava.examples.svc.content.quotes.api that return types with arguments of type QuoteDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPI.createQuote(QuoteDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPI.getQuote(int id) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPI.randomQuote()Methods in info.ejava.examples.svc.content.quotes.api with parameters of type QuoteDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPI.createQuote(QuoteDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> QuotesAPI.updateQuote(int id, QuoteDTO quote) -
Uses of QuoteDTO in info.ejava.examples.svc.content.quotes.client
Methods in info.ejava.examples.svc.content.quotes.client that return types with arguments of type QuoteDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPIClient.createQuote(QuoteDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPIClient.getQuote(int id) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPIClient.randomQuote()Methods in info.ejava.examples.svc.content.quotes.client with parameters of type QuoteDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<QuoteDTO>> QuotesAPIClient.createQuote(QuoteDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> QuotesAPIClient.updateQuote(int id, QuoteDTO quote) -
Uses of QuoteDTO in info.ejava.examples.svc.content.quotes.controllers
Methods in info.ejava.examples.svc.content.quotes.controllers that return types with arguments of type QuoteDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<QuoteDTO> QuotesController.createQuote(String contentType, List<String> accept, QuoteDTO quote) This method provides two example method signatures.org.springframework.http.ResponseEntity<QuoteDTO> QuotesController.getQuote(int id) org.springframework.http.ResponseEntity<QuoteDTO> QuotesController.randomQuote()Methods in info.ejava.examples.svc.content.quotes.controllers with parameters of type QuoteDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<QuoteDTO> QuotesController.createQuote(String contentType, List<String> accept, QuoteDTO quote) This method provides two example method signatures.org.springframework.http.ResponseEntity<Void> QuotesController.updateQuote(int id, QuoteDTO quote) -
Uses of QuoteDTO in info.ejava.examples.svc.content.quotes.dto
Fields in info.ejava.examples.svc.content.quotes.dto with type parameters of type QuoteDTOMethods in info.ejava.examples.svc.content.quotes.dto that return QuoteDTOMethods in info.ejava.examples.svc.content.quotes.dto that return types with arguments of type QuoteDTO -
Uses of QuoteDTO in info.ejava.examples.svc.content.quotes.services
Fields in info.ejava.examples.svc.content.quotes.services with type parameters of type QuoteDTOMethods in info.ejava.examples.svc.content.quotes.services that return QuoteDTOModifier and TypeMethodDescriptionQuotesService.createQuote(QuoteDTO quote) QuotesServiceImpl.createQuote(QuoteDTO quote) QuotesService.getQuote(int id) QuotesServiceImpl.getQuote(int id) QuotesService.randomQuote()QuotesServiceImpl.randomQuote()Methods in info.ejava.examples.svc.content.quotes.services with parameters of type QuoteDTOModifier and TypeMethodDescriptionQuotesService.createQuote(QuoteDTO quote) QuotesServiceImpl.createQuote(QuoteDTO quote) voidQuotesService.updateQuote(int id, QuoteDTO quote) voidQuotesServiceImpl.updateQuote(int id, QuoteDTO quote) protected voidConstructor parameters in info.ejava.examples.svc.content.quotes.services with type arguments of type QuoteDTO