Uses of Class
info.ejava.examples.svc.springdoc.contests.dto.ContestDTO
Packages that use ContestDTO
Package
Description
-
Uses of ContestDTO in info.ejava.examples.svc.springdoc.contests.api
Methods in info.ejava.examples.svc.springdoc.contests.api that return types with arguments of type ContestDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestAPI.createContest(ContestDTO contest) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestAPI.getContest(int id) Methods in info.ejava.examples.svc.springdoc.contests.api with parameters of type ContestDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestAPI.createContest(ContestDTO contest) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> ContestAPI.updateContest(int id, ContestDTO contest) -
Uses of ContestDTO in info.ejava.examples.svc.springdoc.contests.client
Methods in info.ejava.examples.svc.springdoc.contests.client that return types with arguments of type ContestDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestsWebClientImpl.createContest(ContestDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestsWebClientImpl.getContest(int id) Methods in info.ejava.examples.svc.springdoc.contests.client with parameters of type ContestDTOModifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.http.ResponseEntity<ContestDTO>> ContestsWebClientImpl.createContest(ContestDTO quote) reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<Void>> ContestsWebClientImpl.updateContest(int id, ContestDTO quote) -
Uses of ContestDTO in info.ejava.examples.svc.springdoc.contests.controllers
Methods in info.ejava.examples.svc.springdoc.contests.controllers that return types with arguments of type ContestDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ContestDTO> ContestController.createContest(ContestDTO newContest) org.springframework.http.ResponseEntity<ContestDTO> ContestController.getContest(int id) Methods in info.ejava.examples.svc.springdoc.contests.controllers with parameters of type ContestDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ContestDTO> ContestController.createContest(ContestDTO newContest) org.springframework.http.ResponseEntity<Void> ContestController.updateContest(int id, ContestDTO contestUpdate) -
Uses of ContestDTO in info.ejava.examples.svc.springdoc.contests.dto
Fields in info.ejava.examples.svc.springdoc.contests.dto with type parameters of type ContestDTOModifier and TypeFieldDescriptionprivate List<ContestDTO> ContestListDTO.contestsstatic UnaryOperator<ContestDTO> ContestDTOFactory.oneUpIdMethods in info.ejava.examples.svc.springdoc.contests.dto that return ContestDTOModifier and TypeMethodDescriptionContestDTOFactory.make()ContestDTOFactory.make(UnaryOperator<ContestDTO>... visitors) Methods in info.ejava.examples.svc.springdoc.contests.dto that return types with arguments of type ContestDTOModifier and TypeMethodDescriptionContestDTOFactory.ContestListDTOFactory.quotes(int min, int max, UnaryOperator<ContestDTO>... visitors) -
Uses of ContestDTO in info.ejava.examples.svc.springdoc.contests.svc
Fields in info.ejava.examples.svc.springdoc.contests.svc with type parameters of type ContestDTOModifier and TypeFieldDescriptionprivate final Map<Integer, ContestDTO> ContestServiceImpl.contestsMethods in info.ejava.examples.svc.springdoc.contests.svc that return ContestDTOModifier and TypeMethodDescriptionContestService.createContest(ContestDTO newContest) ContestServiceImpl.createContest(ContestDTO contest) ContestService.getContest(int id) ContestServiceImpl.getContest(int id) Methods in info.ejava.examples.svc.springdoc.contests.svc with parameters of type ContestDTOModifier and TypeMethodDescriptionContestService.createContest(ContestDTO newContest) ContestServiceImpl.createContest(ContestDTO contest) voidContestService.updateContest(int id, ContestDTO contestUpdate) voidContestServiceImpl.updateContest(int id, ContestDTO contest) protected voidContestServiceImpl.validate(ContestDTO contest) Constructor parameters in info.ejava.examples.svc.springdoc.contests.svc with type arguments of type ContestDTO